├── .gitignore ├── LICENSE ├── README.md ├── README_CN.md ├── assets └── readme_cover.png ├── docs ├── api-reference │ ├── parse.md │ └── parse_result.md ├── getting_started.md └── json2markdown.ipynb └── examples ├── README.md └── upload_and_parse.py /.gitignore: -------------------------------------------------------------------------------- 1 | # Byte-compiled / optimized / DLL files 2 | __pycache__/ 3 | *.py[cod] 4 | *$py.class 5 | 6 | # C extensions 7 | *.so 8 | 9 | # Distribution / packaging 10 | .Python 11 | build/ 12 | develop-eggs/ 13 | dist/ 14 | downloads/ 15 | eggs/ 16 | .eggs/ 17 | lib/ 18 | lib64/ 19 | parts/ 20 | sdist/ 21 | var/ 22 | wheels/ 23 | share/python-wheels/ 24 | *.egg-info/ 25 | .installed.cfg 26 | *.egg 27 | MANIFEST 28 | 29 | # PyInstaller 30 | # Usually these files are written by a python script from a template 31 | # before PyInstaller builds the exe, so as to inject date/other infos into it. 32 | *.manifest 33 | *.spec 34 | 35 | # Installer logs 36 | pip-log.txt 37 | pip-delete-this-directory.txt 38 | 39 | # Unit test / coverage reports 40 | htmlcov/ 41 | .tox/ 42 | .nox/ 43 | .coverage 44 | .coverage.* 45 | .cache 46 | nosetests.xml 47 | coverage.xml 48 | *.cover 49 | *.py,cover 50 | .hypothesis/ 51 | .pytest_cache/ 52 | cover/ 53 | 54 | # Translations 55 | *.mo 56 | *.pot 57 | 58 | # Django stuff: 59 | *.log 60 | local_settings.py 61 | db.sqlite3 62 | db.sqlite3-journal 63 | 64 | # Flask stuff: 65 | instance/ 66 | .webassets-cache 67 | 68 | # Scrapy stuff: 69 | .scrapy 70 | 71 | # Sphinx documentation 72 | docs/_build/ 73 | 74 | # PyBuilder 75 | .pybuilder/ 76 | target/ 77 | 78 | # Jupyter Notebook 79 | .ipynb_checkpoints 80 | 81 | # IPython 82 | profile_default/ 83 | ipython_config.py 84 | 85 | # pyenv 86 | # For a library or package, you might want to ignore these files since the code is 87 | # intended to run in multiple environments; otherwise, check them in: 88 | # .python-version 89 | 90 | # pipenv 91 | # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. 92 | # However, in case of collaboration, if having platform-specific dependencies or dependencies 93 | # having no cross-platform support, pipenv may install dependencies that don't work, or not 94 | # install all needed dependencies. 95 | #Pipfile.lock 96 | 97 | # UV 98 | # Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control. 99 | # This is especially recommended for binary packages to ensure reproducibility, and is more 100 | # commonly ignored for libraries. 101 | #uv.lock 102 | 103 | # poetry 104 | # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control. 105 | # This is especially recommended for binary packages to ensure reproducibility, and is more 106 | # commonly ignored for libraries. 107 | # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control 108 | #poetry.lock 109 | 110 | # pdm 111 | # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control. 112 | #pdm.lock 113 | # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it 114 | # in version control. 115 | # https://pdm.fming.dev/latest/usage/project/#working-with-version-control 116 | .pdm.toml 117 | .pdm-python 118 | .pdm-build/ 119 | 120 | # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm 121 | __pypackages__/ 122 | 123 | # Celery stuff 124 | celerybeat-schedule 125 | celerybeat.pid 126 | 127 | # SageMath parsed files 128 | *.sage.py 129 | 130 | # Environments 131 | .env 132 | .venv 133 | env/ 134 | venv/ 135 | ENV/ 136 | env.bak/ 137 | venv.bak/ 138 | 139 | # Spyder project settings 140 | .spyderproject 141 | .spyproject 142 | 143 | # Rope project settings 144 | .ropeproject 145 | 146 | # mkdocs documentation 147 | /site 148 | 149 | # mypy 150 | .mypy_cache/ 151 | .dmypy.json 152 | dmypy.json 153 | 154 | # Pyre type checker 155 | .pyre/ 156 | 157 | # pytype static type analyzer 158 | .pytype/ 159 | 160 | # Cython debug symbols 161 | cython_debug/ 162 | 163 | # PyCharm 164 | # JetBrains specific template is maintained in a separate JetBrains.gitignore that can 165 | # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore 166 | # and can be added to the global gitignore or merged into this file. For a more nuclear 167 | # option (not recommended) you can uncomment the following to ignore the entire idea folder. 168 | #.idea/ 169 | 170 | # PyPI configuration file 171 | .pypirc 172 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2024 easydoc-ai 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ![cover-v5-optimized](/assets/readme_cover.png) 2 | 3 |

4 | 📌 Introducing EasyDoc: Powerful Multimodal Document Processing API 5 |

6 | 7 | 8 | 9 |

10 | EasyDoc API Platform 11 | 13 |

14 | 15 |

16 | 17 | Static Badge 18 | 19 | chat on Discord 21 | 22 | follow on X(Twitter) 24 | 25 | Issues closed 26 | 27 | Discussion posts 28 |

29 | 30 |

31 | README in English 32 | 简体中文版自述文件 33 |

34 | 35 | ## 💡 What is EasyDoc? 36 | 37 | EasyDoc is a powerful multimodal document processing API that transforms unstructured documents into hierarchical JSON, making document assets perfect for your AI and LLM applications. Purpose-built for LLM pipelines, EasyDoc provides high-quality data for model inference, fine-tuning, and optimized context windows. 38 | 39 | ### Why Choose EasyDoc? 40 | 41 | - 🧩 Content Block Identification: 42 | 43 | Transform scattered document text into meaningful knowledge blocks, moving far beyond simple line-by-line parsing. Our AI precisely identifies and groups related content, creating optimized context windows perfect for LLM consumption. 44 | 45 | - 🔍 Rich Semantic Extraction: 46 | 47 | Automatically reconstruct document hierarchies into intuitive mind maps, providing LLMs with rich context. Our deep understanding of document organization ensures your AI models receive complete, well-organized information for better reasoning and responses. 48 | 49 | - 🎨 Multimodal Content Parsing: 50 | 51 | Convert complex tables, figures, and visual data into JSON that your AI can actually understand. From multi-level tables to intricate diagrams, EasyDoc transforms multimodal content into machine-readable knowledge, supercharging your AI applications' capabilities. 52 | 53 | 54 | ## 🚀 Getting Started 55 | 56 | ### 1. Get an API key 57 | 58 | To get started with the EasyDoc API, you'll first need to generate an API key. Follow these steps: 59 | 60 | 1. **Visit the API Key Management Page**: 61 | Go to [EasyDoc API Keys](https://platform.easydoc.sh/api-keys) in your browser. 62 | 2. **Log In**: 63 | If you aren't already logged in, sign in to your EasyDoc account using your credentials. 64 | 3. **Generate a New API Key**: 65 | Once logged in, you will be able to create a new API key. Click on the "Create New Key" button. 66 | 4. **Copy Your API Key**: 67 | After the key is generated, a unique API key will be displayed. Copy the key to your clipboard. 68 | 5. **Use the API Key**: 69 | You can now use this API key to authenticate your requests when interacting with the EasyDoc API. 70 | 71 | Make sure to keep your API key secure and do not expose it in public repositories or unauthorized places. 72 | 73 | ### 2. Use the REST API 74 | 75 | You can interact with the EasyDoc API using the following two endpoints: 76 | 77 | #### 1. **POST api/v1/parse** 78 | This API allows you to upload a file and create a parsing task. 79 | > Useful tips: 80 | >* Supported file types: Ensure the uploaded file is in one of the following formats. 81 | > * PDF (.pdf) 82 | > * Text (.txt) 83 | > * Word Documents (.docx, .doc) 84 | > * PowerPoint Presentations (.pptx, .ppt) 85 | >* File size limit: The maximum file size supported for each individual file is 100 MB. Please ensure that your uploaded files do not exceed this limit to avoid request failures. 86 | 87 | - **Send a POST request** to `api/v1/parse` including the file you want to upload in the request body. Replace `api-key` with your personal API key. For the fastest processing, we recommend starting with the Lite mode. 88 | 89 | 90 | ``` shell 91 | curl https://api.easydoc.sh/api/v1/parse \ 92 | -X POST \ 93 | -H "api-key: your-api-key" \ 94 | -F "file=@demo_document.pdf" \ 95 | -F "mode=lite" \ 96 | ``` 97 | 98 | - **Response**: You will receive a `task_id` from the server response that you can use to track the status of the parsing task. 99 | 100 | For detailed API documentation and usage instructions, see [API Reference for POST /api/v1/parse](/docs/api-reference/parse.md). 101 | 102 | --- 103 | 104 | #### 2. **GET api/v1/parse/{task_id}/result** 105 | This API allows you to retrieve the result of the parsing task you previously created. 106 | 107 | 108 | - **Send a GET request** to `api/v1/parse/{task_id}/result`, replacing `{task_id}` with the task ID returned from the previous step. 109 | 110 | ``` bash 111 | curl "https://api.easydoc.sh/api/v1/parse/{task_id}/result" \ 112 | -X GET \ 113 | -H "api-key: your-api-key" 114 | ``` 115 | - **Response**: You will receive the parsing result once the task is complete. 116 | 117 | For more details on how to use this endpoint, see [API Reference for GET /api/v1/parse/{task_id}/result](/docs/api-reference/parse_result.md). 118 | 119 | --- 120 | 121 | ## 💰 Pricing 122 | 🎉 Open Beta: $10 Balance for All Users! 123 | 124 | | Plan | Price | Free Trial | Notes | 125 | |----------------|-----------------|-------------|------------------------------------------------| 126 | | Lite | $2/1000 pages | 1000 pages | Basic features | 127 | | Pro | $8/1000 pages | 1000 pages | Advanced features | 128 | | Premium (Beta) | N/A | 500 pages | Cutting-edge features for trials, [join waitlist](https://easydoc.sh/join-waitlist) to get your API key. | 129 | 130 | 131 | ## 💬 Support and Feedback 132 | - Join our [Discord](https://discord.gg/jRSkyCeN) community for support 133 | - Contact us at cooperate@easylink-ai.com 134 | - [Terms of Service](https://easydoc.sh/terms) 135 | - [Privacy Policy](https://easydoc.sh/privacy) 136 | -------------------------------------------------------------------------------- /README_CN.md: -------------------------------------------------------------------------------- 1 | ![cover-v5-optimized](/assets/readme_cover.png) 2 | 3 |

4 | 📌 EasyDoc:强大的多模态文档处理 API 5 |

6 | 7 |

8 | EasyDoc API Platform 9 | 11 |

12 | 13 |

14 | 15 | Static Badge 16 | 17 | Discord 聊天 19 | 20 | 关注 X (Twitter) 22 | 23 | Issues closed 24 | 25 | 讨论帖子 26 |

27 | 28 |

29 | README in English 30 | 简体中文版自述文件 31 |

32 | 33 | ## 💡 什么是 EasyDoc? 34 | 35 | EasyDoc 是一款强大的多模态文档处理 API,能够精准解读文本和图表中的层次结构与逻辑关系,将非结构化文档转化为 JSON 格式数据,为大语言模型(LLM)应用提供全面而丰富的上下文信息,同时为 LLM 的推理与训练提供高质量数据支持。 36 | 37 | ### 为什么选择 EasyDoc? 38 | 39 | - 📄 智能布局分析: 40 | 41 | 超越传统的行文分割方法,自动解析文档内容,重组零散文本为大语言模型(LLM)可理解的语义知识块。精准梳理文档逻辑关系,为 LLM 提供更具深度的结构化语义支持。 42 | - 🔍 丰富的语义提取: 43 | 44 | 智能识别文档的整体结构,提取标题、章节、段落及列表等核心元数据,构建具有层次关系的文档结构树。帮助 LLM 注入完整的上下文认知,用于上下文增强、导航和语义推理。 45 | - 🎨 多模态内容解析: 46 | 47 | 对复杂表格、图表及视觉元素进行深度语义解析,精准还原其与文本上下文的关联,全面提升 LLM 与多模态 AI 在推理和应用中的表现。 48 | ## 🚀 快速开始 49 | 50 | ### 1. 获取 API 密钥 51 | 52 | 要开始使用 EasydDoc API,您首先需要生成一个 API 密钥。请按照以下步骤操作: 53 | 54 | 1. **访问 API 密钥管理页面**: 55 | 在浏览器中访问 [EasyDoc API 密钥](https://platform.easydoc.sh/api-keys)。 56 | 2. **登录**: 57 | 如果尚未登录,请使用您的凭据登录 EasyDoc 账户。 58 | 3. **生成新的 API 密钥**: 59 | 登录后,您可以创建一个新的 API 密钥。点击“创建新密钥”按钮。 60 | 4. **复制您的 API 密钥**: 61 | 密钥生成后,将显示一个唯一的 API 密钥。将其复制到剪贴板。 62 | 5. **使用 API 密钥**: 63 | 您现在可以使用此 API 密钥在与 EasyDoc API 交互时进行身份验证。 64 | 65 | 请确保妥善保管您的 API 密钥,不要将其暴露在公共仓库或未经授权的地方。 66 | 67 | ### 2. 使用 REST API 68 | 69 | 您可以使用以下两个端点与 EasyDoc API 进行交互: 70 | 71 | #### 1. **POST api/v1/parse** 72 | 此 API 允许您上传文件并创建解析任务。 73 | > **实用提示:** 74 | > - **支持的文件类型**:请确保上传的文件属于以下格式之一。 75 | > - PDF 文件(.pdf) 76 | > - 文本文件(.txt) 77 | > - Word 文档(.docx, .doc) 78 | > - PowerPoint 演示文稿(.pptx, .ppt) 79 | > - **文件大小限制**:每个文件的最大支持大小为 100 MB。请确保上传的文件不超过此限制,以避免请求失败。 80 | 81 | - **发送 POST 请求**到 `api/v1/parse`,将您需要上传的文件包含在请求体中。同时,将 `api-key` 替换为您的个人 API 密钥。为了获得最快的处理速度,我们建议从 `lite` 模式开始。 82 | 83 | ``` shell 84 | curl https://api.easydoc.sh/api/v1/parse \ 85 | -X POST \ 86 | -H "api-key: your-api-key" \ 87 | -F "file=@demo_document.pdf" \ 88 | -F "mode=lite" \ 89 | ``` 90 | 91 | 92 | - **响应**:你将在服务响应中收到一个 `task_id`,接下来可以使用它来跟踪解析任务的状态。 93 | 94 | 95 | 有关详细的 API 文档和使用说明,请查看 [POST /api/v1/parse 的 API 参考](/docs/api-reference/parse.md)。 96 | 97 | --- 98 | 99 | #### 2. **GET api/v1/parse/{task_id}/result** 100 | 此 API 允许您检索之前创建的解析任务的结果。 101 | 102 | **操作步骤**: 103 | - **发送 GET 请求**到 `api/v1/parse/{task_id}/result`,将 `{task_id}` 替换为上一步返回的任务 ID。 104 | ``` bash 105 | curl "https://api.easydoc.sh/api/v1/parse/{task_id}/result" \ 106 | -X GET \ 107 | -H "api-key: your-api-key" 108 | ``` 109 | - **响应**:任务完成后,您将收到解析结果。 110 | 111 | 有关如何使用此端点的更多详细信息,请访问 [GET /api/v1/parse/{task_id}/result 的 API 参考](/docs/api-reference/parse_result.md)。 112 | 113 | --- 114 | 115 | ## 💰 定价 116 | 🎉 新用户福利:立享$10免费额度 117 | 118 | | 计划 | 价格 | 免费试用 | 备注 | 119 | |----------------|----------------|-------------|------------------------------------------------| 120 | | Lite | $2/1000 页 | 1000 页 | 基本功能 | 121 | | Pro | $8/1000 页 | 1000 页 | 高级功能 | 122 | | Premium (Beta) | 免费 | 500 页 | 试用版的前沿功能,[预约优先体验](https://easydoc.sh/zh/join-waitlist)获得API密钥 | 123 | 124 | ## 💬 支持与反馈 125 | 126 | 扫二维码添加进 EasyDoc 交流群,交流内测反馈。 127 | 128 | ![EasyDoc交流群](https://github.com/user-attachments/assets/da4a5342-ab73-425d-987f-a87d96644d74) 129 | 130 | -------------------------------------------------------------------------------- /assets/readme_cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/easydoc-ai/easydoc/a4531b962da1fac334fc47370c9d273e08f10093/assets/readme_cover.png -------------------------------------------------------------------------------- /docs/api-reference/parse.md: -------------------------------------------------------------------------------- 1 | ## Overview 2 | 3 | The `POST /api/v1/parse` endpoint lets you upload files to create parsing tasks. It uses the `AuthStrategyConstants.PARSE_API_AUTH` strategy for security, so you need to include a valid `api-key` in the request header. 4 | 5 | --- 6 | 7 | ## Request Parameters 8 | 9 | ### 1. `file` (MultipartFile) 10 | 11 | - **What it does:** This is the file you want to parse. 12 | - **Type:** `MultipartFile` 13 | - **Required:** Yes 14 | - **Validation Rules:** 15 | - The file must not be empty. 16 | - If the file is missing, the request will fail with an error. 17 | - **Supported File Types:** [View supported file types](/docs/input.md). 18 | 19 | ### 3. `start_page` (Integer) 20 | 21 | - **What it does:** Sets the page number where parsing starts (1-based index). 22 | - **Type:** Integer 23 | - **Required:** No 24 | - **Validation Rules:** 25 | - Must be 1 or greater. 26 | - If both `start_page` and `end_page` are provided, `start_page` must be less than or equal to `end_page`. 27 | 28 | ### 4. `end_page` (Integer) 29 | 30 | - **What it does:** Sets the page number where parsing ends. 31 | - **Type:** Integer 32 | - **Required:** No 33 | - **Default Value:** `-1` (parses until the last page by default). 34 | - **Validation Rules:** 35 | - Must be 1 or greater. 36 | - If `end_page` is greater than the actual number of pages in the document, the parsing will default to the last page of the document. 37 | 38 | ### 5. `mode` (String) 39 | 40 | - **What it does:** Specifies the parsing method or mode. 41 | - **Type:** String 42 | - **Required:** Yes 43 | - **Allowed Values:** 44 | - `lite` 45 | - `pro` 46 | - `premium` 47 | 48 | --- 49 | 50 | ## Request Headers 51 | 52 | ### 1. `api-key` (String) 53 | 54 | - **What it does:** API key for authentication. 55 | - **Required:** Yes 56 | 57 | --- 58 | 59 | ## Request Examples 60 | 61 | ### HTTP Request 62 | 63 | ```http 64 | POST /api/v1/parse HTTP/1.1 65 | Host: api.example.com 66 | Content-Type: multipart/form-data 67 | api-key: your-api-key 68 | 69 | --boundary 70 | Content-Disposition: form-data; name="file"; filename="document.pdf" 71 | Content-Type: application/pdf 72 | 73 | 74 | --boundary 75 | Content-Disposition: form-data; name="start_page" 76 | 77 | 1 78 | --boundary 79 | Content-Disposition: form-data; name="end_page" 80 | 81 | 10 82 | --boundary 83 | Content-Disposition: form-data; name="mode" 84 | 85 | pro 86 | --boundary-- 87 | ``` 88 | 89 | ### cURL Example 90 | 91 | ```bash 92 | curl -X POST \ 93 | -H "api-key: your-api-key" \ 94 | -F "file=@document.pdf" \ 95 | -F "start_page=1" \ 96 | -F "end_page=10" \ 97 | -F "mode=pro" \ 98 | https://api.easydoc.sh/api/v1/parse 99 | ``` 100 | 101 | --- 102 | 103 | ## Response Format 104 | 105 | ### Successful Response 106 | 107 | - **Status Code:** `200 OK` 108 | - **Response Body:** 109 | 110 | ```json 111 | { 112 | "success": true, 113 | "err_code": null, 114 | "err_message": null, 115 | "data": { 116 | "task_id": "*********************************" 117 | } 118 | } 119 | ``` 120 | 121 | ### Failed Response 122 | 123 | - **Status Code:** `200 OK` 124 | - **Response Body:** 125 | 126 | ```json 127 | { 128 | "success": false, 129 | "err_code": "CONSOLE_UNAUTHORIZED", 130 | "err_message": "Unauthorized access to API service" 131 | } 132 | ``` 133 | 134 | --- 135 | 136 | ## Error Codes 137 | 138 | | Error Code | Error Message | Description | 139 | | ------------------------- | ---------------------------------- | -------------------------------------------------------------------------------- | 140 | | `API_UNAUTHORIZED` | Unauthorized access to API service | API key validation failed. | 141 | | `INVALID_PARAMETER` | Invalid parameter. | General parameter error, including missing or invalid values. | 142 | | `INTERNAL_SERVER_ERROR` | Internal server error. | Triggered when the system encounters an unknown error. | 143 | | `INSUFFICIENT_RESOURCES` | Insufficient resources. | Triggered when system resources (CPU, memory, or storage) are insufficient. | 144 | | `INVALID_DOCUMENT_FORMAT` | Invalid document format. | Triggered when the uploaded file format is not supported or cannot be processed. | 145 | 146 | --- 147 | 148 | ## Notes 149 | 150 | 1. Ensure uploaded files meet security and size requirements. 151 | 2. The `mode` parameter determines the parsing method and affects both speed and accuracy. 152 | 3. Use the `start_page` and `end_page` parameters to parse specific sections of the document. 153 | 154 | -------------------------------------------------------------------------------- /docs/api-reference/parse_result.md: -------------------------------------------------------------------------------- 1 | ## Overview 2 | 3 | The `GET /api/v1/parse/{task_id}/result` endpoint allows you to retrieve the result of a parsing task. This endpoint is protected by the `AuthStrategyConstants.PARSE_API_AUTH` strategy, so you must include a valid `api-key` in the request header for authentication. 4 | 5 | --- 6 | 7 | ## Request Parameters 8 | 9 | ### 1. `task_id` (PathVariable) 10 | 11 | - **What it does:** The unique identifier of the parsing task. 12 | - **Type:** String 13 | - **Required:** Yes 14 | 15 | --- 16 | 17 | ## Request Headers 18 | 19 | ### 1. `api-key` (String) 20 | 21 | - **What it does:** API key for authentication. 22 | - **Required:** Yes 23 | 24 | --- 25 | 26 | ## Request Examples 27 | 28 | ### HTTP Request 29 | 30 | ```http 31 | GET /api/v1/parse/{task_id}/result HTTP/1.1 32 | Host: api.example.com 33 | api-key: your-api-key 34 | Content-Type: application/json 35 | ``` 36 | 37 | ### cURL Example 38 | 39 | ```bash 40 | curl -X GET "https://api.easydoc.sh/api/v1/parse/{task_id}/result" \ 41 | -H "api-key: your-api-key" 42 | ``` 43 | 44 | --- 45 | 46 | ## Response Format 47 | 48 | ### Successful Response 49 | 50 | - **Status Code:** `200 OK` 51 | - **Response Body:** 52 | 53 | ```json 54 | { 55 | "success": true, 56 | "errCode": null, 57 | "errMessage": null, 58 | "data": { 59 | "taskId": "*********************************", // Unique task ID 60 | "task_status": "PENDING", // PENDING, SUCCESS, ERROR, PROGRESSING 61 | "task_result": { 62 | // Parsed data, this field has a value when data.status == SUCCESS 63 | } 64 | } 65 | } 66 | ``` 67 | 68 | ### Failed Response 69 | 70 | - **Status Code:** `200 OK` 71 | - **Response Body:** 72 | 73 | ```json 74 | { 75 | "success": false, 76 | "errCode": "CONSOLE_UNAUTHORIZED", 77 | "errMessage": "Unauthorized access to API service" 78 | } 79 | ``` 80 | 81 | --- 82 | 83 | ## Error Codes 84 | 85 | | Error Code | Error Message | Description | 86 | | ------------------------- | ---------------------------------- | -------------------------------------------------------------------------------- | 87 | | `API_UNAUTHORIZED` | Unauthorized access to API service | API key validation failed. | 88 | | `INVALID_PARAMETER` | Invalid parameter. | General parameter error, including missing or invalid values. | 89 | | `INTERNAL_SERVER_ERROR` | Internal server error. | Triggered when the system encounters an unknown error. | 90 | | `INSUFFICIENT_RESOURCES` | Insufficient resources. | Triggered when system resources (CPU, memory, or storage) are insufficient. | 91 | | `INVALID_DOCUMENT_FORMAT` | Invalid document format. | Triggered when the uploaded file format is not supported or cannot be processed. | 92 | 93 | --- 94 | 95 | | **Error Code** | **Error Message** | **Description** | **User Action** | 96 | |----------------------------|--------------------------------|-------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------| 97 | | `API_UNAUTHORIZED` | Unauthorized access to API service | API key validation failed. | Verify that your API key is correct, properly formatted, and included in the request headers as required. Obtain a new key if needed. | 98 | | `INVALID_PARAMETER` | Invalid parameter. | General parameter error, including missing or invalid values. | Check the API documentation for the required parameters. Validate and correct any missing or incorrect values in your request. | 99 | | `INTERNAL_SERVER_ERROR` | Internal server error. | Triggered when the system encounters an unknown error. | Retry the request after a short interval. If the problem persists, contact EasyDoc support for assistance. | 100 | | `INSUFFICIENT_RESOURCES` | Insufficient resources. | Triggered when system resources (CPU, memory, or storage) are insufficient. | Reduce the size or complexity of your request. If large requests are unavoidable, contact EasyDoc support to address resource limitations. | 101 | | `INVALID_DOCUMENT_FORMAT`| Invalid document format. | Triggered when the uploaded file format is not supported or cannot be processed. | Ensure the uploaded file follows the supported formats listed in the documentation. Convert the file into a valid format before re-uploading. | 102 | -------------------------------------------------------------------------------- /docs/getting_started.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ## 🚀 Getting Started 4 | 5 | ### 1. Get an API key 6 | 7 | To get started with the EasyDoc API, you'll first need to generate an API key. Follow these steps: 8 | 9 | 1. **Visit the API Key Management Page**: 10 | Go to [EasyDoc API Keys](https://platform.easydoc.sh/api-keys) in your browser. 11 | 2. **Log In**: 12 | If you aren't already logged in, sign in to your EasyDoc account using your credentials. 13 | 3. **Generate a New API Key**: 14 | Once logged in, you will be able to create a new API key. Click on the "Create New Key" button. 15 | 4. **Copy Your API Key**: 16 | After the key is generated, a unique API key will be displayed. Copy the key to your clipboard. 17 | 5. **Use the API Key**: 18 | You can now use this API key to authenticate your requests when interacting with the EasyDoc API. 19 | 20 | Make sure to keep your API key secure and do not expose it in public repositories or unauthorized places. 21 | 22 | ### 2. Use the REST API 23 | 24 | You can interact with the EasyDoc API using the following two endpoints: 25 | 26 | #### 1. **POST api/v1/parse** 27 | This API allows you to upload a file and create a parsing task. 28 | > Useful tips: 29 | >* Supported file types: Ensure the uploaded file is in one of the following formats. 30 | > * PDF (.pdf) 31 | > * Text (.txt) 32 | > * Word Documents (.docx, .doc) 33 | > * PowerPoint Presentations (.pptx, .ppt) 34 | >* File size limit: The maximum file size supported for each individual file is 100 MB. Please ensure that your uploaded files do not exceed this limit to avoid request failures. 35 | 36 | - **Send a POST request** to `api/v1/parse` including the file you want to upload in the request body. Replace `api-key` with your personal API key. For the fastest processing, we recommend starting with the Lite mode. 37 | 38 | 39 | ``` shell 40 | curl https://api.easydoc.sh/api/v1/parse \ 41 | -X POST \ 42 | -H "api-key: your-api-key" \ 43 | -F "file=@demo_document.pdf" \ 44 | -F "mode=lite" \ 45 | ``` 46 | 47 | - **Response**: You will receive a `task_id` from the server response that you can use to track the status of the parsing task. 48 | 49 | For detailed API documentation and usage instructions, see [API Reference for POST /api/v1/parse](/docs/api-reference/parse.md). 50 | 51 | --- 52 | 53 | #### 2. **GET api/v1/parse/{task_id}/result** 54 | This API allows you to retrieve the result of the parsing task you previously created. 55 | 56 | 57 | - **Send a GET request** to `api/v1/parse/{task_id}/result`, replacing `{task_id}` with the task ID returned from the previous step. 58 | 59 | ``` bash 60 | curl "https://api.easydoc.sh/api/v1/parse/{task_id}/result" \ 61 | -X GET \ 62 | -H "api-key: your-api-key" 63 | ``` 64 | - **Response**: You will receive the parsing result once the task is complete. 65 | 66 | For more details on how to use this endpoint, see [API Reference for GET /api/v1/parse/{task_id}/result](/docs/api-reference/parse_result.md). 67 | 68 | --- 69 | -------------------------------------------------------------------------------- /docs/json2markdown.ipynb: -------------------------------------------------------------------------------- 1 | { 2 | "cells": [ 3 | { 4 | "cell_type": "markdown", 5 | "metadata": {}, 6 | "source": [ 7 | "## Convert JSON Data to Markdown Using Python\n", 8 | "\n", 9 | "> This guide explains how to use Python to convert JSON data into Markdown format. It is useful for transforming structured data into readable documentation." 10 | ] 11 | }, 12 | { 13 | "cell_type": "markdown", 14 | "metadata": {}, 15 | "source": [ 16 | "## Fetch JSON Data" 17 | ] 18 | }, 19 | { 20 | "cell_type": "markdown", 21 | "metadata": {}, 22 | "source": [ 23 | "### Obtain an API Key\n", 24 | "\n", 25 | "Apply for an API key from the official website: [EASYDOC](https://easydoc.sh/zh)\n", 26 | "- Log in and click on \"API Keys\" in the left menu.\n", 27 | "- Click \"Create API Key\" to generate an API key." 28 | ] 29 | }, 30 | { 31 | "cell_type": "code", 32 | "execution_count": null, 33 | "metadata": {}, 34 | "outputs": [], 35 | "source": [ 36 | "APIKEY = \"your API key here\" # your API key here" 37 | ] 38 | }, 39 | { 40 | "cell_type": "markdown", 41 | "metadata": {}, 42 | "source": [ 43 | "### Send a Parse Request" 44 | ] 45 | }, 46 | { 47 | "cell_type": "code", 48 | "execution_count": null, 49 | "metadata": {}, 50 | "outputs": [ 51 | { 52 | "name": "stdout", 53 | "output_type": "stream", 54 | "text": [ 55 | "{'data': {'task_id': 'parse_76a8e227-2e1c-4e51-83df-bf5c6d552f85'}, 'success': True}\n" 56 | ] 57 | } 58 | ], 59 | "source": [ 60 | "import requests # pip install requests\n", 61 | "\n", 62 | "url = \"https://api.easydoc.sh/api/v1/parse\"\n", 63 | "headers = {\n", 64 | " \"api-key\": APIKEY\n", 65 | "}\n", 66 | "files = {\n", 67 | " \"file\": open('your file path', \"rb\")\n", 68 | "}\n", 69 | "data = {\n", 70 | " \"mode\": \"premium\" # Required for node structure relationship data\n", 71 | "}\n", 72 | "\n", 73 | "response = requests.post(url, headers=headers, files=files, data=data)\n", 74 | "print(response.json())" 75 | ] 76 | }, 77 | { 78 | "cell_type": "markdown", 79 | "metadata": {}, 80 | "source": [ 81 | "### Retrieve the Parsing Result" 82 | ] 83 | }, 84 | { 85 | "cell_type": "code", 86 | "execution_count": 37, 87 | "metadata": {}, 88 | "outputs": [ 89 | { 90 | "name": "stdout", 91 | "output_type": "stream", 92 | "text": [ 93 | "{'data': {'task_id': 'parse_76a8e227-2e1c-4e51-83df-bf5c6d552f85', 'task_result': {'file_name': '财务报告-报表_5.pdf', 'nodes': [{'id': 1, 'text': '证券代码:300757 证券简称:罗博特科 公告编号:2024-036', 'type': 'Text', 'relation': 'part_of', 'parent_id': -1, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [315.8567810058594, 526.1871948242188, 2620.138427734375, 607.2030029296875], 'page_number': 1, 'layout_width': 2985, 'layout_height': 4220}]}, {'id': 2, 'text': '罗博特科智能科技股份有限公司\\n2024年第一季度报告', 'type': 'Title', 'relation': 'part_of', 'parent_id': -1, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [941.9064331054688, 858.51611328125, 1984.0863037109375, 1100.014404296875], 'page_number': 1, 'layout_width': 2985, 'layout_height': 4220}]}, {'id': 3, 'text': '本公司及董事会全体成员保证信息披露的内容真实、准确、完整,没有虚假记载、误\\n导性陈述或重大遗漏', 'type': 'Text', 'relation': 'part_of', 'parent_id': 2, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [322.00018310546875, 1168.36865234375, 2596.83642578125, 1344.1488037109375], 'page_number': 1, 'layout_width': 2985, 'layout_height': 4220}]}, {'id': 4, 'text': '重要内容提示:', 'type': 'Title', 'relation': 'part_of', 'parent_id': 2, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [319.34222412109375, 1404.778564453125, 695.0029296875, 1479.1297607421875], 'page_number': 1, 'layout_width': 2985, 'layout_height': 4220}]}, {'id': 5, 'text': '1.董事会、监事会及董事、监事、高级管理人员保证季度报告的真实、准确、完整,不存\\n在虚假记载、误导性陈述或重大遗漏,并承担个别和连带的法律责任。', 'type': 'Text', 'relation': 'part_of', 'parent_id': 4, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [317.8906555175781, 1521.2767333984375, 2573.24462890625, 1693.463623046875], 'page_number': 1, 'layout_width': 2985, 'layout_height': 4220}]}, {'id': 6, 'text': '2.公司负责人、主管会计工作负责人及会计机构负责人(会计主管人员)声明:保证季度报\\n告中财务信息的真实、准确、完整。', 'type': 'Text', 'relation': 'part_of', 'parent_id': 4, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [317.68389892578125, 1739.475341796875, 2563.127685546875, 1913.1898193359375], 'page_number': 1, 'layout_width': 2985, 'layout_height': 4220}]}, {'id': 7, 'text': '3.第一季度报告是否经过审计', 'type': 'Text', 'relation': 'part_of', 'parent_id': 4, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [317.4787902832031, 1960.9969482421875, 1065.916259765625, 2033.74951171875], 'page_number': 1, 'layout_width': 2985, 'layout_height': 4220}]}, {'id': 8, 'text': '口是否', 'type': 'Text', 'relation': 'part_of', 'parent_id': 4, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [319.89593505859375, 2085.794189453125, 544.9219970703125, 2153.55029296875], 'page_number': 1, 'layout_width': 2985, 'layout_height': 4220}]}, {'id': 9, 'text': '一、主要财务数据', 'type': 'Title', 'relation': 'part_of', 'parent_id': 2, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [320.4491882324219, 2183.424560546875, 791.25146484375, 2255.690673828125], 'page_number': 1, 'layout_width': 2985, 'layout_height': 4220}]}, {'id': 10, 'text': '(一)主要会计数据和财务指标', 'type': 'Title', 'relation': 'part_of', 'parent_id': 9, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [340.4506530761719, 2331.850830078125, 1056.826904296875, 2399.82080078125], 'page_number': 1, 'layout_width': 2985, 'layout_height': 4220}]}, {'id': 11, 'text': '公司是否需追溯调整或重述以前年度会计数据', 'type': 'Text', 'relation': 'part_of', 'parent_id': 10, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [323.6429138183594, 2473.1220703125, 1197.9957275390625, 2531.212890625], 'page_number': 1, 'layout_width': 2985, 'layout_height': 4220}]}, {'id': 12, 'text': '口是否', 'type': 'Text', 'relation': 'part_of', 'parent_id': 10, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [318.265380859375, 2545.817138671875, 490.5830078125, 2596.267822265625], 'page_number': 1, 'layout_width': 2985, 'layout_height': 4220}]}, {'id': 13, 'text': '本报告期比上年同期增减\\n\\n本报告\\n 短能\\n 上年同期\\n\\n(%)\\n\\n营业收入(元)\\n 259,047,714.77\\n 1.52%\\n\\n归属于上市公司股东的净利\\n\\n4,236,096.83\\n 39.23%\\n\\n润(元)\\n\\n份有\\n 归属于上市公司股东的扣除\\n 罗\\n\\n非经常性损益的净利润\\n 5.708731.70\\n 4386.928.71\\n 30.124h\\n\\n(元)\\n 中\\n\\n经营活动产生的现金流量净\\n\\n-36763.463-58\\n 346.989\\n\\n额(元)\\n\\n基本每股收益(元/股)\\n 0.05\\n 25:0004\\n\\nH释每股收益(元/股)\\n 0.05\\n 00\\n 25.01\\n\\n加权平均净资产收益率\\n 0.60%\\n 0:1246\\n 本报告期末比上年度末增减\\n\\n本报告期末\\n 上年度木\\n (%)\\n\\n总资产(元)\\n 2,715,501,446.27\\n 2.567378.379.10\\n 557714\\n\\n归属于上市公司股东的所有\\n\\n990,290,297.49\\n 982.301.05S.98\\n 081\\n\\n者权益(元)', 'type': 'Figure', 'caption': ['口是否'], 'relation': 'part_of', 'parent_id': 10, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [292.20123291015625, 2589.0966796875, 2638.789306640625, 3658.919921875], 'page_number': 1, 'layout_width': 2985, 'layout_height': 4220}], 'vlm_understanding': '这张图片显示的是一份财务报告,其中包含了营业收入、归属于上市公司股东的净利润、归属于上市公司股东的扣除非经常性损益后的净利润等各项财务指标的数据对比。具体数据如下:\\n\\n- 本报告期营业收入为2,029,838,490元,比上年同期增长1.52%。\\n- 本报告期归属于上市公司股东的净利润为5,898,882,467元,比上年同期增长39.23%。\\n- 本报告期归属于上市公司股东的扣除非经常性损益后的净利润为5,708,214,767元,比上年同期增长30.12%。\\n- 本报告期经营活动产生的现金流量净额为-26,763,463,58元,比上年同期减少346.98%。\\n\\n此外,报告还列出了基本每股收益、稀释每股收益和加权平均净资产收益率等财务指标的数据对比。这些数据表明公司在过去的一段时间内取得了显著的增长,但也需要注意经营活动现金流量净额的大幅下降。'}, {'id': 14, 'text': '(二)非经常性损益项目和金额', 'type': 'Title', 'relation': 'part_of', 'parent_id': 9, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [340.4898986816406, 428.55999755859375, 1061.4381103515625, 497.0037231445313], 'page_number': 2, 'layout_width': 2981, 'layout_height': 4218}]}, {'id': 15, 'text': '适用口不适用', 'type': 'Text', 'relation': 'part_of', 'parent_id': 14, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [315.15826416015625, 570.2887573242188, 624.8997192382812, 628.2418823242188], 'page_number': 2, 'layout_width': 2981, 'layout_height': 4218}]}, {'id': 16, 'text': '单位:元', 'type': 'Text', 'relation': 'part_of', 'parent_id': 14, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [2418.277099609375, 624.9008178710938, 2603.00390625, 677.547607421875], 'page_number': 2, 'layout_width': 2981, 'layout_height': 4218}]}, {'id': 17, 'note': ['其他符合非经常性损益定义的损益项目的具体情况'], 'text': '项目\\n 本报告期金额\\n 说明\\n\\n非流动性资产处置损益(包括已计提\\n\\n26,418.39\\n\\n资产减值准备的冲销部分)\\n\\n计入当期损益的政府补助(与公司正\\n 常经营业务密切相关、符合国家政策\\n\\n176,228.26\\n\\n规定、按照确定的标准享有、对公司\\n 损益产生持续影响的政府补助除外)\\n 除上述各项之外的其他营业外收入和\\n\\n33,055.18\\n\\n支出\\n\\n减:所得税影响额\\n 45,597.02\\n\\n少数股东权益影响额(税后)\\n 257.09\\n\\n合计\\n 189,847.72', 'type': 'Table', 'relation': 'part_of', 'parent_id': 14, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [293.28863525390625, 676.8162231445312, 2616.09423828125, 1531.1947021484375], 'page_number': 2, 'layout_width': 2981, 'layout_height': 4218}]}, {'id': 18, 'text': '其他符合非经常性损益定义的损益项目的具体情况', 'type': 'Text', 'relation': 'part_of', 'parent_id': 14, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [311.8681335449219, 1534.6885986328125, 1282.835693359375, 1588.6583251953125], 'page_number': 2, 'layout_width': 2981, 'layout_height': 4218}]}, {'id': 19, 'text': '口适用不适用', 'type': 'Text', 'relation': 'part_of', 'parent_id': 14, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [315.22442626953125, 1601.5325927734375, 620.3020629882812, 1655.0225830078125], 'page_number': 2, 'layout_width': 2981, 'layout_height': 4218}]}, {'id': 20, 'text': '公司不存在其他符合非经常性损益定义的损益项目的具体情况。', 'type': 'Text', 'relation': 'part_of', 'parent_id': 14, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [318.6564025878906, 1667.728759765625, 1513.1689453125, 1721.802490234375], 'page_number': 2, 'layout_width': 2981, 'layout_height': 4218}]}, {'id': 21, 'text': '将《公开发行证券的公司信息披露解释性公告第1号——非经常性损益》中列举的非经常性损益项日界定为经常性损益\\n项口的情况说明', 'type': 'Text', 'relation': 'part_of', 'parent_id': 14, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [315.8684997558594, 1733.7000732421875, 2575.60986328125, 1850.11181640625], 'page_number': 2, 'layout_width': 2981, 'layout_height': 4218}]}, {'id': 22, 'text': '口适用不适用', 'type': 'Text', 'relation': 'part_of', 'parent_id': 14, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [311, 1863, 617, 1924], 'page_number': 2, 'layout_width': 2981, 'layout_height': 4218}]}, {'id': 23, 'text': '将《公开发行证券的公司信息披露解释性公告第1号一非经常性损益》中列举的非经常性损益项目界久\\n的项目的情形。', 'type': 'Text', 'relation': 'part_of', 'parent_id': 14, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [536.7569580078125, 1929.0550537109375, 2510.558349609375, 2044.3538818359375], 'page_number': 2, 'layout_width': 2981, 'layout_height': 4218}]}, {'id': 24, 'text': '(三)主要会计数据和财务指标发生变动的情况及原因', 'type': 'Title', 'relation': 'part_of', 'parent_id': 9, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [335.5875244140625, 2118.87451171875, 1553.0322265625, 2184.8291015625], 'page_number': 2, 'layout_width': 2981, 'layout_height': 4218}]}, {'id': 25, 'text': '适用口不适用', 'type': 'Text', 'relation': 'part_of', 'parent_id': 24, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [314.5784912109375, 2257.774658203125, 618.5775756835938, 2314.113525390625], 'page_number': 2, 'layout_width': 2981, 'layout_height': 4218}]}, {'id': 26, 'text': '1、资产负债表项目重大变动情况', 'type': 'Text', 'relation': 'part_of', 'parent_id': 24, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [315.1971740722656, 2389.39208984375, 958.6882934570312, 2450.660400390625], 'page_number': 2, 'layout_width': 2981, 'layout_height': 4218}]}, {'id': 27, 'text': '单位:元', 'type': 'Text', 'relation': 'part_of', 'parent_id': 24, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [2417, 2516, 2606, 2598], 'page_number': 2, 'layout_width': 2981, 'layout_height': 4218}]}, {'id': 28, 'note': ['2、利润表项目重大变动情况'], 'text': '资产负债表项目\\n 本报告期末\\n 上年度末\\n 增减幅度\\n 原因分析\\n\\n主要系本期末持有的结\\n\\n交易性金融资产\\n 10,000,000.00\\n 100.00%\\n\\n构性存款增加所致\\n\\n主要系本期末增值税留\\n 其他流动资产\\n 8,614,782.41\\n 19,196,956.51\\n -55.12%\\n\\n抵税额减少所致\\n\\n主要系公司支付部分到\\n\\n应付票据\\n 79,882,961.26\\n 117,003,716.55\\n -31.73%期银行承兑汇票使余额\\n\\n减少所致\\n\\n主要系本期发放上期末\\n\\n应付职工薪酬\\n 9,569,235.08\\n 25,512,136.67\\n -62.49%计提的奖金使得余额减\\n\\n少所致\\n\\n主要系公司盈利能力提\\n\\n应交税费\\n 5,926,806.75\\n 4,387,630.71\\n 35.08%升、期末应交所得税余\\n\\n额上升所致', 'type': 'Table', 'relation': 'part_of', 'parent_id': 24, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [306.45159912109375, 2593.79150390625, 2641.206787109375, 3518.916748046875], 'page_number': 2, 'layout_width': 2981, 'layout_height': 4218}]}, {'id': 29, 'text': '2、利润表项目重大变动情况', 'type': 'Text', 'relation': 'part_of', 'parent_id': 24, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [306.2627868652344, 3590.086669921875, 871.8177490234375, 3650.93359375], 'page_number': 2, 'layout_width': 2981, 'layout_height': 4218}]}, {'id': 30, 'note': ['3、现金流量表项目重大变动情况'], 'text': '利润表项目\\n 本期数\\n 上年同期数\\n 增减幅度\\n 原因分析\\n\\n主要系本期缴纳增值税\\n\\n税金及附加\\n 1,990,804.83\\n 1,353,377.73\\n 47.10%增加使得城建、教育费\\n\\n附加上升所致\\n\\n主要系本期计提股份支\\n\\n管理费用\\n 12,220,781.93\\n 8.319,216.64\\n 46.90%付费用及资产重组中介\\n\\n费用上升所致\\n\\n主要系本期增值税加计\\n\\n其他收益\\n 3,675,556.17\\n 1,735,321.57\\n 111.81%\\n\\n抵减增加所致\\n\\n主要系公司盈利能力提\\n\\n所得税费用\\n 2,461,205.83\\n 384.346.03\\n 540.36%高、所得税费用上升所\\n\\n致', 'type': 'Table', 'relation': 'part_of', 'parent_id': 24, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [311.7679138183594, 425.8254699707031, 2651.232421875, 1212.687255859375], 'page_number': 3, 'layout_width': 2980, 'layout_height': 4222}]}, {'id': 31, 'text': '3、现金流量表项目重大变动情况', 'type': 'Text', 'relation': 'part_of', 'parent_id': 24, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [315.4154052734375, 1286.0506591796875, 962.6741333007812, 1349.240966796875], 'page_number': 3, 'layout_width': 2980, 'layout_height': 4222}]}, {'id': 32, 'text': '单位:元', 'type': 'Text', 'relation': 'part_of', 'parent_id': 24, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [2426.898681640625, 1420.502197265625, 2611.62109375, 1475.388671875], 'page_number': 3, 'layout_width': 2980, 'layout_height': 4222}]}, {'id': 33, 'text': '现金流量表项目\\n 本期数\\n 上年同期数\\n 增减幅度\\n 原因分析\\n\\n主要系本期支付较多供\\n\\n经营活动产生的现金流\\n -119,627,328.05\\n -26,763,463.58\\n -346.98%应商款项使经营活动现\\n\\n量净额\\n 金净流出增加所致\\n\\n主要系本期未有到期理\\n\\n投资活动产生的现金流\\n\\n-19,648,339.75\\n 14,656,326.35\\n -234.06%财产品收回使投资现金\\n\\n量净额\\n 流入减少所致\\n\\n主要系本期公司银行借\\n\\n筹资活动产生的现金流\\n 169,602,578.68\\n -18,498,363.85\\n 1,016.85%款增加使筹资现金净流\\n\\n量净额\\n 入增加所致', 'type': 'Table', 'caption': ['单位:元'], 'relation': 'part_of', 'parent_id': 24, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [313.1260986328125, 1487.9495849609375, 2655.34033203125, 2156.074951171875], 'page_number': 3, 'layout_width': 2980, 'layout_height': 4222}]}, {'id': 34, 'text': '二、股东信息', 'type': 'Title', 'relation': 'part_of', 'parent_id': 2, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [318.6271057128906, 2229.46923828125, 673.6566772460938, 2303.70703125], 'page_number': 3, 'layout_width': 2980, 'layout_height': 4222}]}, {'id': 35, 'text': '(一)普通股股东总数和表决权恢复的优先股股东数量及前十名股东持股情况表', 'type': 'Text', 'relation': 'part_of', 'parent_id': 34, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [337.2300109863281, 2374.5498046875, 2125.938232421875, 2444.703125], 'page_number': 3, 'layout_width': 2980, 'layout_height': 4222}]}, {'id': 36, 'text': '单位:股', 'type': 'Text', 'relation': 'part_of', 'parent_id': 34, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [2428, 2493, 2622, 2569], 'page_number': 3, 'layout_width': 2980, 'layout_height': 4222}]}, {'id': 37, 'note': ['持股5%以上股东、前10名股东及前10名无限售流通股股东参与转融通业务出借股份情况\\n口适用不适用'], 'text': '报告期末普通股股东总数\\n 24.426报告期末表决权恢复的优先股股东总数(如有)\\n 0\\n\\n前10名股东持股情况(不含通过转融通出借股份)\\n\\n持股比例\\n 持有有限售条\\n 质押、标记或冻结情况\\n\\n股东名称\\n 股东性质\\n 持股数量\\n\\n(%)\\n 件的股份数量\\n 股份状态\\n 数量\\n\\n苏州元颜昇企\\n\\n境内非国有法\\n\\n业管理咨询有\\n 25.66%\\n 28,326,600.00\\n 0.00质押\\n 11,238,000.00\\n\\n人\\n\\n限公司\\n\\n宁波科骏企业\\n\\n境内非国有法\\n\\n管理咨询中心\\n 6.92%\\n 7,641,100.00\\n 0.00\\n 不适用\\n 0.00\\n\\n人\\n\\n(有限合伙)\\n\\n夏承周\\n 境内自然人\\n 5.02%\\n 5,546,200.00\\n 0.00\\n 不适用\\n 0.00\\n\\n戴军\\n 境内自然人\\n 4.27%\\n 4,709,577.00\\n 4,709,577.00\\n 质押\\n 3,700,000.00\\n\\n李洁\\n 境内自然人\\n 4.00%\\n 4,418,240.00\\n 0.00\\n 不适用\\n 0.00\\n\\n土暨钟\\n 境内自然人\\n 1.71%\\n 1.883.355.00\\n 0.00\\n 不适用\\n 0.00\\n\\n上宏军\\n 境内自然人\\n 1.42%\\n 1,569,859.00\\n 1,569,859.00\\n 不适用\\n 0.00\\n\\nT墨\\n 境内自然人\\n 1.24%\\n 1,366,500.00\\n 0.00\\n 不适用\\n 0.00\\n\\n香港中央结算\\n\\n境外法人\\n 0.91%\\n 999,907.00\\n 0.00\\n 不适用\\n 0.00\\n\\n有限公司\\n\\n基本养老保险\\n\\n其他\\n 0.88%\\n 974,000.00\\n 0.00\\n 不适用\\n 0.00\\n\\n基金一二零三组合\\n\\n前10名无限售条件股东持股情况\\n\\n股份种类\\n\\n股东名称\\n 持有无限售条件股份数量\\n 股份种类\\n 数量\\n\\n苏州元颌昇企业管理咨询有限公\\n\\n28,326,600.00\\n 人民币普通股\\n 28,326,600.00\\n\\n宁波科骏企业管理咨询中心(有\\n\\n7,641,100.00\\n 人民币普通股\\n 7,641,100.00\\n\\n限合伙)\\n 夏承周\\n 5,546,200.00\\n 人民币普通股\\n 5,546,200.00\\n\\n李洁\\n 4,418,240.00\\n 人民币普通股\\n 4,418,240.00\\n\\n王暨钟\\n 1,883,355.00\\n 人民币普通股\\n 1,883,355.00\\n\\n工墨\\n 1,366,500.00\\n 人民币普通股\\n 1,366,500.00\\n\\n香港中央结算有限公司\\n 999,907.00\\n 人民币普通股\\n 999,907.00\\n\\n基本养老保险基金·二零组合\\n 974,000.00\\n 人民币普通股\\n 974,000.00\\n\\n中国建设银行股份有限公司一鹏\\n 华沪深港新兴成长灵活配置混合\\n 765,550.00\\n 人民币普通股\\n 765,550.00\\n\\n型证券投资基金\\n\\n张建成\\n 750.000.00人民币普通股\\n 750,000.00\\n\\n公司实际控制人戴车、控股股东苏州元颌昇企业管理咨询有限公\\n 司、股东宁波科骏企业管理咨询中心(有限合伙)三位股东为一致行\\n\\n上述股东关联关系或一致行动的说明\\n 动人。除此之外,未知公司上述股东之间是否存在关联关系,也未\\n 知上述股东之问是否属于《上市公司收购管理办法》规定的一致行\\n\\n动人。\\n\\n股东王墨通过普通证券账户持有公司0股,通过国泰君安证券股份\\n\\n前10名股东参与融资融券业务股东情况说明(如\\n\\n有限公司客户信用交易担保证券账户持有公司1,366.500股,合计\\n 有)\\n\\n1,366.500股。', 'type': 'Table', 'caption': ['单位:股'], 'relation': 'part_of', 'parent_id': 34, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [289.37982177734375, 2569.94189453125, 2630.47265625, 3763.685791015625], 'page_number': 3, 'layout_width': 2980, 'layout_height': 4222}, {'system': 'PixelSpace', 'coordinates': [291.8116149902344, 424.4527893066406, 2619.323486328125, 1972.673095703125], 'page_number': 4, 'layout_width': 2984, 'layout_height': 4220}]}, {'id': 38, 'text': '持股5%以上股东、前10名股东及前10名无限售流通股股东参与转融通业务出借股份情况\\n口适用不适用', 'type': 'Text', 'relation': 'part_of', 'parent_id': 34, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [310.4252014160156, 1990.191162109375, 2039.1160888671875, 2130.52685546875], 'page_number': 4, 'layout_width': 2984, 'layout_height': 4220}]}, {'id': 39, 'text': '前10名股东及前10名无限售流通股股东因转融通出借/归还原因导致较上期发生变化\\n口适用不适用', 'type': 'Text', 'relation': 'part_of', 'parent_id': 34, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [318.3240661621094, 2153.504150390625, 1937.195556640625, 2291.609619140625], 'page_number': 4, 'layout_width': 2984, 'layout_height': 4220}]}, {'id': 40, 'text': '(二)公司优先股股东总数及前10名优先股股东持股情况表', 'type': 'Title', 'relation': 'part_of', 'parent_id': 34, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [335.2047119140625, 2367.120849609375, 1677.72509765625, 2434.8564453125], 'page_number': 4, 'layout_width': 2984, 'layout_height': 4220}]}, {'id': 41, 'text': '口适用不适用', 'type': 'Text', 'relation': 'part_of', 'parent_id': 40, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [310.3609924316406, 2506.648681640625, 617.2613525390625, 2566.39453125], 'page_number': 4, 'layout_width': 2984, 'layout_height': 4220}]}, {'id': 42, 'text': '(三)限售股份变动情况', 'type': 'Title', 'relation': 'part_of', 'parent_id': 34, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [335.6437683105469, 2645.825439453125, 894.114990234375, 2713.138916015625], 'page_number': 4, 'layout_width': 2984, 'layout_height': 4220}]}, {'id': 43, 'text': '口适用不适用', 'type': 'Text', 'relation': 'part_of', 'parent_id': 42, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [311.0343017578125, 2801.241943359375, 615.0205688476562, 2860.381103515625], 'page_number': 4, 'layout_width': 2984, 'layout_height': 4220}]}, {'id': 44, 'text': '三、其他重要事项', 'type': 'Title', 'relation': 'part_of', 'parent_id': 2, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [309.98858642578125, 2938.99560546875, 784.7398681640625, 3012.078125], 'page_number': 4, 'layout_width': 2984, 'layout_height': 4220}]}, {'id': 45, 'text': '适用口不适用', 'type': 'Text', 'relation': 'part_of', 'parent_id': 44, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [310.76275634765625, 3085.094482421875, 613.1954345703125, 3144.023193359375], 'page_number': 4, 'layout_width': 2984, 'layout_height': 4220}]}, {'id': 46, 'text': '1、公司发行股份及支付现金购买资产并募集配套资企事项', 'type': 'Text', 'relation': 'part_of', 'parent_id': 44, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [313.190185546875, 3171.60107421875, 1426.772705078125, 3232.255615234375], 'page_number': 4, 'layout_width': 2984, 'layout_height': 4220}]}, {'id': 47, 'text': '(1)2024年1月31口,公司收到深圳证券交易所的通知,公司因重人资产重组申请文件中记载的财务资料已过有效期, 需要补充提交。按照《深圳证券交易所上市公司重大资产重组市核规则》的相关规定,深圳证券交易所对公司木次重组\\n中止审核,具体内容详见公司于2024年2月1日在巨潮资讯网(http://www.cninfo.com.cn)上披露的相关公告。', 'type': 'Text', 'relation': 'part_of', 'parent_id': 44, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [310.01446533203125, 3269.765869140625, 2604.41796875, 3481.11181640625], 'page_number': 4, 'layout_width': 2984, 'layout_height': 4220}]}, {'id': 48, 'text': '(2)2024年2月27日,公司召开了第三届董事会第十二次会议和第三届监事会第十一次会议,审议通过了《关于调整 公司发行股份及支付现金购买资产并募集配套资金方案的议案》等相关议案,并向深圳证券交易所更新补充了以2023年 10月31口为审计基准口的加期审计及申请文件。根据《深圳证券交易所上市公司重大资产重组审核规则》的相关规定, 公司已向深圳证券交易所提交了恢复审核的中请,具体内容详见公司于2024年2月28H在已潮资讯网\\n(http://www.cninfo.com.cn)上披露的相关公告。', 'type': 'Text', 'relation': 'part_of', 'parent_id': 44, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [308.29876708984375, 3518.00048828125, 2601.054931640625, 3729.844482421875], 'page_number': 4, 'layout_width': 2984, 'layout_height': 4220}, {'system': 'PixelSpace', 'coordinates': [326.5472717285156, 440.6014404296875, 2618.9951171875, 580.0596923828125], 'page_number': 5, 'layout_width': 2984, 'layout_height': 4221}]}, {'id': 49, 'text': '(3)2024年2月28日,公司收到深圳证券交易所同意恢复本次重组审核的回复,具体内容详见公司于2024年3月1日\\n在巨潮资讯网(http://www.cninfo.com.cn)上披露的相关公告。', 'type': 'Text', 'relation': 'part_of', 'parent_id': 44, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [327.15814208984375, 613.8407592773438, 2615.97802734375, 752.0076293945312], 'page_number': 5, 'layout_width': 2984, 'layout_height': 4221}]}, {'id': 50, 'text': '2、独立董事变动情况', 'type': 'Text', 'relation': 'part_of', 'parent_id': 44, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [318.9327392578125, 796.0321655273438, 744.7630615234375, 854.2908935546875], 'page_number': 5, 'layout_width': 2984, 'layout_height': 4221}]}, {'id': 51, 'text': '2024年2月6日,公司独立董事牛丹先生因个人原因申请辞去公司独立董事及薪酬与考核委员会主任委员(召集人)、 提名委员会委员、战略委员会委员的职务。辞职后,牛丹先生不再担任公司及子公司任何职务。鉴于牛丹先生辞职会导 致公司董事会及相关专门委员会中独立董事所比例不符合法律法规和《公司章程》的规定,其辞职在公可股东大会选\\n举产生新任独立董事之后生效。', 'type': 'Text', 'relation': 'part_of', 'parent_id': 44, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [323.7221374511719, 885.248291015625, 2600.6171875, 1174.217529296875], 'page_number': 5, 'layout_width': 2984, 'layout_height': 4221}]}, {'id': 52, 'text': '2024年2月7日,公司召开第三届董事会第十·次会议,审议通过了《关于补选公司第三届董事会独立董事的议案》。 经董事会提名委员会资格审查,公司董事会同意提名凌旭峰先生为公司第一届董事会独立董事候选人,并在股东大会审 议通过后,由其担任新酬与考核委员会主任委员(们集人)、提名委员会委员、战略委员会委员,任期门股东人会审议 通过之日起至第三届董事会任期届满之日止。具体内容见公司于2024年2月8日在巳潮资讯网\\n(http://www.cninfo.com.cn)1:披露的关公告。', 'type': 'Text', 'relation': 'part_of', 'parent_id': 44, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [324.7813415527344, 1207.56787109375, 2621.325439453125, 1577.9739990234375], 'page_number': 5, 'layout_width': 2984, 'layout_height': 4221}]}, {'id': 53, 'text': '2024年2月23日,公司召开2024年第·一次临时股东大会,审议通过了《关于补选公司第三届董事会独立重事的议案》,\\n同意补选凌旭峰先生为公司第一届董事会独立董事,任期自股东大会审议通过之日起至第一届董事会任期届满之日止。\\n具体内容见公司于2024年2月24口在巨潮资讯网(http://www.cninfo.com.cn)上披露的相关公告。', 'type': 'Text', 'relation': 'part_of', 'parent_id': 44, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [326.1220703125, 1611.48486328125, 2629.96728515625, 1826.9024658203125], 'page_number': 5, 'layout_width': 2984, 'layout_height': 4221}]}, {'id': 54, 'text': '3、监事变动情况', 'type': 'Text', 'relation': 'part_of', 'parent_id': 44, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [323.52490234375, 1871.4365234375, 658.3028564453125, 1930.3126220703125], 'page_number': 5, 'layout_width': 2984, 'layout_height': 4221}]}, {'id': 55, 'text': '2024年3月25日,公司职工代表监事唐涛先生因个人原因申请辞去公司职工代表监事职务。辞职后,唐涛先生将不再 担任公司任何职务。鉴丁唐涛先生辞去监事职务后,会导致公司监事会人数低于法定人数的情形,为保证监事会正常运 行,公司于2024年3月25H召开职工代衣大会,经与会职工代表币议并表决,同意补选庞胜先生为公司第二届监事会 职工代表监事,与公司其他监事共同组成公司第一届监事会,任期自本次职工代表大会通过之日起至第一届监事会庙满\\n之口it。具体内容见公司于2024年3月26口在巨潮资讯网(http://www.cninfo.com.cn)上披露的相关公告。', 'type': 'Text', 'relation': 'part_of', 'parent_id': 44, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [324.17626953125, 1963.6488037109375, 2601.010986328125, 2328.64208984375], 'page_number': 5, 'layout_width': 2984, 'layout_height': 4221}]}, {'id': 56, 'text': '四、季度财务报表', 'type': 'Title', 'relation': 'part_of', 'parent_id': 2, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [323.5867919921875, 2414.353515625, 796.4645385742188, 2486.809814453125], 'page_number': 5, 'layout_width': 2984, 'layout_height': 4221}]}, {'id': 57, 'text': '(一)财务报表', 'type': 'Title', 'relation': 'part_of', 'parent_id': 56, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [345.548583984375, 2562.35791015625, 699.9654541015625, 2626.905029296875], 'page_number': 5, 'layout_width': 2984, 'layout_height': 4221}]}, {'id': 58, 'text': '1、合并资产负债表', 'type': 'Title', 'relation': 'part_of', 'parent_id': 57, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [324.77825927734375, 2701.587158203125, 764.799072265625, 2767.738525390625], 'page_number': 5, 'layout_width': 2984, 'layout_height': 4221}]}, {'id': 59, 'text': '编制单位:罗博特科智能科技股份有限公司', 'type': 'Text', 'relation': 'part_of', 'parent_id': 58, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [324.03021240234375, 2839.523193359375, 1158.9158935546875, 2899.54296875], 'page_number': 5, 'layout_width': 2984, 'layout_height': 4221}]}, {'id': 60, 'text': '2024年03月31口', 'type': 'Text', 'relation': 'part_of', 'parent_id': 58, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [1283.2559814453125, 2898.146484375, 1650.071533203125, 2954.607666015625], 'page_number': 5, 'layout_width': 2984, 'layout_height': 4221}]}, {'id': 61, 'text': '单位:元', 'type': 'Text', 'relation': 'part_of', 'parent_id': 58, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [2437.37744140625, 2951.8154296875, 2621.9970703125, 3003.2900390625], 'page_number': 5, 'layout_width': 2984, 'layout_height': 4221}]}, {'id': 62, 'note': ['法定代表人:戴军', '主管会计工作负责人:杨雪莉'], 'text': '项目\\n 期末余额\\n 期初余额\\n\\n流动资产:\\n 货币资金\\n 260,877,557.28\\n 238,808,283.68\\n\\n结算备付金\\n 拆出资金\\n\\n交易性金融资产\\n 10,000,000.00\\n\\n衍生金融资产\\n\\n应收票据\\n 应收账款\\n 334,136,108.85\\n 285,965,826.98\\n\\n应收款项融资\\n 68,747,319.59\\n 76,414,883.83\\n\\n预付款项\\n 49,310,927.24\\n 42,772,667.55\\n\\n应收保费\\n\\n应收分保账款应收分保合同准备金\\n\\n其他应收款\\n 1,093,941.60\\n 1,298,299.32\\n\\n其中:应收利息\\n 应收股利\\n 买入返售金融资产\\n\\n存货\\n 568,718,980.65\\n 500,618,635.40\\n\\n其中:数据资源\\n\\n合同资产\\n 570,666,327.42\\n 566,183,861.12\\n\\n持有待售资产\\n\\n年内到期的非流动资产\\n\\n其他流动资产\\n 8,614,782.41\\n 19,196,956.51\\n\\n流动资产合计\\n 1,872,165,945.04\\n 1,731,259,414.39\\n\\n非流动资产:\\n\\n发放贷款和垫款\\n\\n债权投资\\n\\n其他债权投资\\n 长期应收款\\n 长期股权投资\\n 209,582,294.62\\n 209,512,205.87\\n\\n其他权益工具投资\\n 其他非流动金融资产\\n 30,000,000.00\\n 30,000,000.00\\n\\n投资性房地产\\n\\n固定资产\\n 264,907,961.48\\n 270,487,621.04\\n\\n在建工程\\n 25,933,539.72\\n 21,650,676.11\\n\\n生产性生物资产\\n\\n油气资产\\n 使用权资产\\n 818,622.12\\n 889,004.94\\n\\n无形资产\\n 51,203,750.73\\n 52,637,409.34\\n\\n其中:数据资源\\n\\n开发支出\\n\\n其中:数据资源\\n\\n商誉\\n 7,744,546.19\\n 7,744,546.19\\n\\n长期待摊费用\\n 193,425.06\\n 157,787.00\\n\\n递延所得税资产\\n 32,018,709.80\\n 32,177,031.56\\n\\n其他非流动资产\\n 220,932,651.51\\n 210,862,680.96\\n\\n非流动资产合计\\n 843,335,501.23\\n 836,118,963.01\\n\\n资产总计\\n 2,715,501,446.27\\n 2,567,378,377.40\\n\\n流动负债:\\n 短期借款\\n 811,876,352.02\\n 641,396,816.34\\n\\n向中央银行借款\\n\\n拆入资金\\n\\n交易性金融负债\\n 衍生金融负债\\n\\n应付票据\\n 79,882,961.26\\n 117,003,716.55\\n\\n应付账款\\n 533,018,940.58\\n 522,971,287.90\\n\\n预收款项\\n 合同负债\\n 219,908,300.39\\n 204,173,827.28\\n\\n卖出回购金融资产款\\n 吸收存款及同业存放\\n\\n代理买卖证券款\\n 代理承销证券款\\n 应付职工薪酬\\n 9,569,235.08\\n 25,512,136.67\\n\\n应交税费\\n 5,926,806.75\\n 4,387,630.71\\n\\n其他应付款\\n 16,207,156.69\\n 18,642,889.25\\n\\n其中:应付利息\\n 应付股利应付手续费及佣金\\n\\n应付分保账款\\n 持有待售负债\\n\\n一年内到期的非流动负债\\n 10,121,564.90\\n 10,147,374.97\\n\\n其他流动负债\\n 20,843,156.06\\n 22,842,240.66\\n\\n流动负债合计\\n 1,707,354,473.73\\n 1,567,077,920.33\\n\\n非流动负债:\\n\\n保险合同准备金\\n\\n长期借款\\n 20,011,933.26\\n 20,022,622.57\\n\\n应付债券\\n\\n其中:优先股\\n 永续债\\n\\n租赁负债\\n 11,252.69\\n\\n长期应付款\\n\\n长期应付职工薪酬\\n\\n预计负债\\n 递延收益\\n\\n递延所得税负债\\n 其他非流动负债\\n 非流动负债合计\\n 20,011,933.26\\n 20,033,875.26\\n\\n负债合计\\n 1,727,366,406.99\\n 1,587,111,795.59\\n\\n所有者权益:\\n\\n股本\\n 110,388,986.00\\n 110,388,986.00\\n\\n其他权益工具\\n 其中:优先股\\n 永续债\\n\\n资本公积\\n 573,418,828.59\\n 571,605,286.90\\n\\n减:库存股\\n 3,265,691.50\\n 3,265,691.50\\n\\n其他综合收益\\n 9,395,316.14\\n 9,118,601.78\\n\\n专项储备\\n 盈余公积\\n 43,980,130.86\\n 43,980,130.86\\n\\n一般风险准备\\n 未分配利润\\n 256,372,727.40\\n 250,474,644.92\\n\\n归属于母公司所有者权益合计\\n 990,290,297.49\\n 982,301,958.96\\n\\n少数股东权益\\n -2,155,258.21\\n -2,035,377.15\\n\\n所有者权益合计\\n 988,135,039.28\\n 980,266,581.81\\n\\n负债和所有者权益总计\\n 2,715,501,446.27\\n 2,567,378,377.40', 'type': 'Table', 'caption': ['单位:元'], 'relation': 'part_of', 'parent_id': 58, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [293.3638916015625, 3004.382080078125, 2639.39306640625, 3791.01318359375], 'page_number': 5, 'layout_width': 2984, 'layout_height': 4221}, {'system': 'PixelSpace', 'coordinates': [279.128173828125, 406.40338134765625, 2611.954345703125, 3766.974853515625], 'page_number': 6, 'layout_width': 2984, 'layout_height': 4216}, {'system': 'PixelSpace', 'coordinates': [288.4229736328125, 426.4904479980469, 2632.387451171875, 2637.951171875], 'page_number': 7, 'layout_width': 2979, 'layout_height': 4220}]}, {'id': 63, 'text': '法定代表人:戴军', 'type': 'Text', 'relation': 'part_of', 'parent_id': 58, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [317.031494140625, 2634.614501953125, 669.7236328125, 2686.75], 'page_number': 7, 'layout_width': 2979, 'layout_height': 4220}]}, {'id': 64, 'text': '主管会计工作负责人:杨雪莉', 'type': 'Text', 'relation': 'part_of', 'parent_id': 58, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [1180.3681640625, 2632.03173828125, 1753.974853515625, 2686.260986328125], 'page_number': 7, 'layout_width': 2979, 'layout_height': 4220}]}, {'id': 65, 'text': '会计机构负责人:刘洋', 'type': 'Text', 'relation': 'part_of', 'parent_id': 58, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [2162.205810546875, 2629.960205078125, 2602.310791015625, 2681.9345703125], 'page_number': 7, 'layout_width': 2979, 'layout_height': 4220}]}, {'id': 66, 'text': '2、合并利润表', 'type': 'Title', 'relation': 'part_of', 'parent_id': 57, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [318.5924377441406, 2760.88525390625, 659.7994384765625, 2826.231201171875], 'page_number': 7, 'layout_width': 2979, 'layout_height': 4220}]}, {'id': 67, 'text': '单位:元', 'type': 'Text', 'relation': 'part_of', 'parent_id': 66, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [2429.1123046875, 2897.859375, 2613.3759765625, 2952.452880859375], 'page_number': 7, 'layout_width': 2979, 'layout_height': 4220}]}, {'id': 68, 'text': '项目\\n 本期发生额\\n 上期发生额\\n\\n、营业总收入\\n 262,995,118.29\\n 259,047,714.77\\n\\n其中:营业收入\\n 262,995,118.29\\n 259,047,714.77\\n\\n利息收入\\n 已赚保费\\n\\n手续费及佣金收入\\n\\n营业总成本\\n 250,169,886.00\\n 248,873,091.49\\n\\n其中:营业成本\\n 201,333,386.91\\n 206,609,450.42\\n\\n利息支出\\n\\n手续费及佣金支出\\n\\n退保金\\n\\n赔付支出净额提取保险责任准备金净额\\n\\n保单红利支出\\n\\n分保费用\\n 税金及附加\\n 1,990,804.83\\n 1,353.377.73\\n\\n销售费用\\n 12,995,238.17\\n 13,924,207.98\\n\\n管理费用\\n 12,220,781.93\\n 8,319,216.64\\n\\n研发费用\\n 18,850,542.93\\n 15,421,964.96\\n\\n财务费用\\n 2,779,131.23\\n 3,244,873.76\\n\\n其中:利息费用\\n 3,979,831.52\\n 3,053,913.09\\n\\n利息收入\\n 731,421.23\\n 250,860.62\\n\\n加:其他收益\\n 3,675,556.17\\n 1,735,321.57\\n\\n投资收益(损失以“一”号填\\n\\n70,088.75\\n 99,638.58\\n\\n列)\\n\\n其中:对联营企业和合营\\n\\n70,088.75\\n 6,590.95\\n\\n企业的投资收益\\n\\n以摊余成本计量的\\n\\n金融资产终止确认收益\\n\\n汇兑收益(损失以“\"号填列)\\n 净散口套期收益(损失以“一”\\n\\n号填列)\\n\\n公允价值变动收益(损失以\\n\\n号填列)\\n\\n信用减值损失(损失以“”号填\\n\\n-5,955,396.40\\n 4,746,157.74\\n\\n列)\\n\\n资产减值损失(损失以\"\"号填\\n\\n-2,467,488.74\\n -2,003,499.20\\n\\n列)\\n\\n资产处置收益(损失以“\"号填\\n\\n140,939.71\\n\\n列)\\n\\n三、营业利润(亏损以“-”号填列)\\n 8,147,992.07\\n 5,400,866.20\\n\\n加:营业外收入\\n 51,028.40\\n 1,097.66\\n\\n减:营业外支出\\n 8,445.17\\n 978,000.71\\n\\n四、利润总额(亏损总额以“一”号填\\n 8,190,575.30\\n 4,423,963.15\\n\\n列)\\n\\n减:所得税费用\\n 2,461,205.83\\n 384,346.03\\n\\n五、净利润(净亏损以“一\"号填列)\\n 5,729,369.47\\n 4,039,617.12\\n\\n(一)按经营持续性分类\\n\\n1.持续经营净利润(净亏损以“一”\\n\\n5,729,369.47\\n 4,039,617.12\\n\\n号填列)\\n\\n2.终止经营净利润(净亏损以“一\\n\\n号填列)\\n\\n(二)按所有权归属分类\\n\\n1.归属于母公司所有者的净利润\\n 5,898,082.48\\n 4,236,096.83\\n\\n2.少数股东损益\\n -168,713.01\\n -196,479.71\\n\\n六、其他综合收益的税后净额\\n 325,546.31\\n -12,514.02\\n\\n归属母公司所有者的其他综合收益\\n 276,714.36\\n -10,636.92\\n\\n的税后净额\\n\\n(一)不能重分类进损益的其他\\n\\n综合收益\\n\\n1.重新计量设定受益计划变动\\n\\n额\\n\\n2.权益法下不能转损益的其他\\n\\n综合收益', 'type': 'Table', 'caption': ['单位:元'], 'relation': 'part_of', 'parent_id': 66, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [289.598388671875, 2960.07666015625, 2629.03662109375, 3795.6572265625], 'page_number': 7, 'layout_width': 2979, 'layout_height': 4220}, {'system': 'PixelSpace', 'coordinates': [286.85009765625, 403.71783447265625, 2609.180908203125, 3822.45703125], 'page_number': 8, 'layout_width': 2979, 'layout_height': 4217}]}, {'id': 69, 'note': ['本期发生同控制下企业合并的,被合并方在合并前实现的净利润为:元,上期被合并方实现的净利润为:元。\\n法定代表人:戴军 主管会计工作负责人:杨雪莉 会计机构负责人:刘洋'], 'text': '3.其他权益工具投资公允价值\\n\\n变动\\n\\n4.企业自身信用风险公允价值\\n\\n变动\\n\\n5.其他\\n\\n(二)将重分类进损益的其他综\\n\\n276,714.36\\n -10,636.92\\n\\n合收益\\n\\n1.权益法下可转损益的其他综\\n\\n合收益\\n\\n2.其他债权投资公允价值变动\\n 3.金融资产重分类计入其他综\\n\\n合收益的金额\\n\\n4.其他债权投资信用减值准备\\n\\n5.现金流量套期储备\\n\\n6.外币财务报表折算差额\\n 276,714.36\\n -10,636.92\\n\\n7.其他\\n\\n归属于少数股东的其他综合收益的\\n 48,831.95\\n -1,877.10\\n\\n税后净额\\n\\n七、综合收益总额\\n 6,054,915.78\\n 4,027,103.10\\n\\n归属于母公司所有者的综合收益总\\n\\n6,174,796.84\\n 4,225,459.91\\n\\n额\\n\\n归属于少数股东的综合收益总额\\n -119,881.06\\n -198,356.81\\n\\n八、每股收益:\\n\\n(一)基本每股收益\\n 0.05\\n 0.04\\n\\n(二)稀释每股收益\\n 0.05\\n 0.04', 'type': 'Table', 'relation': 'part_of', 'parent_id': 66, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [295.8466491699219, 429.3774108886719, 2637.61767578125, 1910.77734375], 'page_number': 9, 'layout_width': 2981, 'layout_height': 4224}]}, {'id': 70, 'text': '本期发生同控制下企业合并的,被合并方在合并前实现的净利润为:元,上期被合并方实现的净利润为:元。\\n法定代表人:戴军 主管会计工作负责人:杨雪莉 会计机构负责人:刘洋', 'type': 'Text', 'relation': 'part_of', 'parent_id': 66, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [313.52593994140625, 1910.2626953125, 2611.84033203125, 2025.946044921875], 'page_number': 9, 'layout_width': 2981, 'layout_height': 4224}]}, {'id': 71, 'text': '3、合并现金流量表', 'type': 'Title', 'relation': 'part_of', 'parent_id': 57, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [320.1487731933594, 2100.1982421875, 763.05224609375, 2166.35009765625], 'page_number': 9, 'layout_width': 2981, 'layout_height': 4224}]}, {'id': 72, 'text': '单位:元', 'type': 'Text', 'relation': 'part_of', 'parent_id': 71, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [2429, 2216, 2623, 2294], 'page_number': 9, 'layout_width': 2981, 'layout_height': 4224}]}, {'id': 73, 'text': '项目\\n 本期发生额\\n 上期发生额\\n\\n、经营活动产生的现金流量:\\n\\n销售商品、提供劳务收到的现金\\n 131,754,467.94\\n 124,999,700.04\\n\\n客户存款和同业存放款项净增加额\\n\\n向中央银行借款净增加额\\n\\n向其他金融机构拆入资金净增加额\\n 收到原保险合同保费取得的现金\\n\\n收到再保业务现金净额\\n\\n保户储金及投资款净增加额\\n\\n收取利息、手续费及佣金的现金\\n\\n拆入资金净增加额\\n\\n回购业务资金净增加额\\n\\n代理买卖证券收到的现金净额\\n\\n收到的税费返还\\n 18,595,317.11\\n 4,780,716.66\\n\\n收到其他与经营活动有关的现金\\n 5,242,974.80\\n 2,374,962.82\\n\\n经营活动现金流入小计\\n 155,592,759.85\\n 132,155,379.52\\n\\n购买商品、接受劳务支付的现金\\n 206,294,819.38\\n 96,831,173.14\\n\\n客户贷款及垫款净增加额\\n\\n存放中央银行和同业款项净增加额\\n 支付原保险合同赔付款项的现金\\n\\n拆出资金净增加额', 'type': 'Table', 'caption': ['单位:元'], 'relation': 'part_of', 'parent_id': 71, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [292.4276123046875, 2311.830322265625, 2635.252197265625, 3787.711181640625], 'page_number': 9, 'layout_width': 2981, 'layout_height': 4224}]}, {'id': 74, 'note': ['(二)2024年起首次执行新会计准则调整首次执行当年年初财务报表相关项目情况'], 'text': '支付利息、手续费及佣金的现金\\n\\n支付保单红利的现金\\n\\n支付给职工以及为职工支付的现金\\n 54,183,333.71\\n 47,242,498.43\\n\\n支付的各项税费\\n 3,860,476.40\\n 7,777,423.81\\n\\n支付其他与经营活动有关的现金\\n 10,881,458.41\\n 7,067,747.72\\n\\n经营活动现金流出小计\\n 275,220,087.90\\n 158,918,843.10\\n\\n经营活动产生的现金流量净额\\n -119,627,328.05\\n -26,763,463.58\\n\\n二、投资活动产生的现金流量:\\n\\n收回投资收到的现金\\n\\n取得投资收益收到的现金\\n\\n处置固定资产、无形资产和其他长\\n 26,000.00\\n\\n期资产收回的现金净额\\n\\n处置子公司及其他营业单位收到的\\n\\n现金净额\\n\\n收到其他与投资活动有关的现金\\n 75,093,047.63\\n\\n投资活动现金流入小计\\n 26,000.00\\n 75,093,047.63\\n\\n购建固定资产、无形资产和其他长\\n 9,634,339.75\\n 5,475,121.28\\n\\n期资产支付的现金\\n 投资支付的现金\\n 质押贷款净增加额\\n\\n取得子公司及其他营业单位支付的\\n\\n现金净额\\n\\n支付其他与投资活动有关的现金\\n 10,040,000.00\\n 54,961,600.00\\n\\n投资活动现金流出小计\\n 19,674,339.75\\n 60,436,721.28\\n\\n投资活动产生的现金流量净额\\n -19,648,339.75\\n 14,656,326.35\\n\\n三、筹资活动产生的现金流量:\\n\\n吸收投资收到的现金\\n\\n其中:子公司吸收少数股东投资\\n\\n收到的现金\\n\\n取得借款收到的现金\\n 273,000,000.00\\n 125,024,000.00\\n\\n收到其他与筹资活动有关的现金\\n\\n筹资活动现金流入小计\\n 273,000,000.00\\n 125,024,000.00\\n\\n偿还债务支付的现金\\n 99,600,000.00\\n 140,000,000.00\\n\\n分配股利、利润或偿付利息支付的\\n\\n3,797,421.32\\n 3,522,363.85\\n\\n现金\\n\\n其中:子公司支付给少数股东的\\n\\n股利、利润\\n\\n支付其他与筹资活动有关的现金\\n\\n筹资活动现金流出小计\\n 103,397,421.32\\n 143,522,363.85\\n\\n筹资活动产生的现金流量净额\\n 169,602,578.68\\n -18,498,363.85\\n\\n四、汇率变动对现金及现金等价物的\\n\\n-112,476.19\\n -120,896.88\\n\\n影响\\n\\n五、现金及现金等价物净增加额\\n 30,214,434.69\\n -30,726,397.96\\n\\n加:期初现金及现金等价物余额\\n 215,117,710.19\\n 177,644,730.91\\n\\n六、期末现金及现金等价物余额\\n 245,332,144.88\\n 146,918,332.95', 'type': 'Table', 'relation': 'part_of', 'parent_id': 71, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [288.0625305175781, 410.9174499511719, 2612.0048828125, 3178.782470703125], 'page_number': 10, 'layout_width': 2979, 'layout_height': 4218}]}, {'id': 75, 'text': '(二)2024年起首次执行新会计准则调整首次执行当年年初财务报表相关项目情况', 'type': 'Title', 'relation': 'part_of', 'parent_id': 56, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [337, 3238, 2518, 3304], 'page_number': 10, 'layout_width': 2979, 'layout_height': 4218}]}, {'id': 76, 'text': '口适用不适用', 'type': 'Text', 'relation': 'part_of', 'parent_id': 75, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [311.0133361816406, 3383.4267578125, 612.6719970703125, 3439.12060546875], 'page_number': 10, 'layout_width': 2979, 'layout_height': 4218}]}, {'id': 77, 'text': '(三)审计报告', 'type': 'Title', 'relation': 'part_of', 'parent_id': 56, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [341.2596435546875, 3507.173583984375, 757.537109375, 3579.09765625], 'page_number': 10, 'layout_width': 2979, 'layout_height': 4218}]}, {'id': 78, 'text': '第·季度报告是否经过审计\\n口是否', 'type': 'Text', 'relation': 'part_of', 'parent_id': 77, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [305.1357116699219, 3651.362060546875, 840.8886108398438, 3776.461669921875], 'page_number': 10, 'layout_width': 2979, 'layout_height': 4218}]}, {'id': 79, 'text': '公司第一季度报告未经审计。', 'type': 'Text', 'relation': 'part_of', 'parent_id': 77, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [339.3265075683594, 434.359375, 2624.673583984375, 830.8414916992188], 'page_number': 11, 'layout_width': 2981, 'layout_height': 4222}]}, {'id': 80, 'text': '资产负债表', 'type': 'Title', 'relation': 'part_of', 'parent_id': 56, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [1011.0205688476562, 329.6085205078125, 1643.4539794921875, 419.4570007324219], 'page_number': 12, 'layout_width': 2976, 'layout_height': 4220}]}, {'id': 81, 'text': '2024年3月31日', 'type': 'Text', 'relation': 'part_of', 'parent_id': 80, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [1216.9510498046875, 474.3560791015625, 1435.158935546875, 517.4952392578125], 'page_number': 12, 'layout_width': 2976, 'layout_height': 4220}]}, {'id': 82, 'text': '编制单位:罗博特科智能科技股份有限公司', 'type': 'Text', 'relation': 'part_of', 'parent_id': 80, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [283, 571, 895, 633], 'page_number': 12, 'layout_width': 2976, 'layout_height': 4220}]}, {'id': 83, 'text': '会企01表', 'type': 'Text', 'relation': 'part_of', 'parent_id': 80, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [2154.537841796875, 522.1858520507812, 2376.259033203125, 614.6788330078125], 'page_number': 12, 'layout_width': 2976, 'layout_height': 4220}]}, {'id': 84, 'note': ['法定代表人:', '主管会计工作的负责人:'], 'text': '资产\\n 期末数\\n 上年年末数\\n 负债和所有者权益\\n 期末数\\n 上年年末数\\n\\n流动资产:\\n 流动负债:\\n\\n货币资金\\n 194, 390, 880. 64\\n 130, 946,017.53\\n 短期借款\\n 767,056, 725.17\\n 541, 557, 068.73\\n\\n交易性金融资产\\n 交易性金融负债\\n\\n衍生金融资产\\n 衍生金融负债\\n\\n应收票据\\n 应付票据\\n 79, 882, 961. 26\\n 103, 110, 128. 20\\n\\n应收账款\\n 263, 834,023.89\\n 227,990, 523.18\\n 应付账款\\n 414,835, 202.57\\n 394, 523, 341. 03\\n\\n应收款项融资\\n 19, 091, 152.51\\n 56,495,082.83\\n 预收款项\\n\\n预付款项\\n 61, 424, 979. 50\\n 57,824, 915.98\\n 合同负债\\n 144,019, 143.32\\n\\n其他应收款\\n 35, 337, 515. 71\\n 23,730,009.86\\n 应付职工薪酬\\n 770,394.70\\n\\n存货\\n 437,859, 191.30\\n 331, 280, 418. 70\\n 应交税费\\n H8, 141.67\\n\\n合同资产\\n 501,033,974.01\\n 523,348,348.92\\n 其他应付款\\n 一\\n 5,250.74\\n\\n持有待售资产\\n 持有待售负债\\n\\n一年内到期的非流动\\n 年内到期的非流\\n 016, 319.44\\n\\n其他流动资产\\n 4, 928, 921.91\\n 13, 062, 364. 74\\n 其他流动负债\\n 15, 023, 680.26\\n\\n流动资产合计\\n 1, 517, 900,639.47\\n 1,364,677, 681. 74\\n 流动负债合计\\n 1, 454, 1101.\\n 1, 293, 113, 468.09\\n\\n非流动负债:\\n 长期借款\\n 20, 011, 933. 26\\n 20, 022, 622.57\\n\\n应付债券\\n\\n其中:优先股\\n 永续债\\n\\n赁负债\\n\\n非流动资产:\\n 债权投资\\n\\n其他债权投资\\n 预计\\n\\n长期应收款\\n 2059\\n 6\\n\\n长期股权投资\\n 608, 685, 855.51\\n 25,766.76\\n\\n其他权益工具投资\\n 其他业\\n\\n其他非流动金融资产\\n 30,000,000.00\\n 30, 000, 000. 00\\n 非流动负债合计\\n 20, 011,933. 26\\n 20, 022,622.57\\n\\n投资性房地产\\n 负债合计\\n 1, 474, 151, 034. 73\\n 1, 313, 136, 090. 66\\n\\n固定资产\\n 18, 306,829.66\\n 19, 802, 944.87\\n 所有者权益(或股东权益):\\n\\n在建工程\\n 25, 681, 671. 61\\n 21, 628, 540. 18\\n 实收资本(或股本)\\n 110, 388, 986.00\\n 110,388, 986.00\\n\\n生产性生物资产\\n 其他权益工具\\n\\n油气资产\\n 其中:优先股\\n\\n使用权资产\\n 712,742.21\\n 753,086.12\\n 永续债\\n\\n无形资产\\n 11, 984, 646. 22\\n 12, 178, 665.80\\n 资本公积\\n 570,329,435. 52\\n 566, 903, 571.74\\n\\n开发支出\\n 减:库存股\\n 3,265,691. 50\\n 3, 265,691.50\\n\\n商誉\\n 其他综合收益\\n\\n长期待摊费用\\n 专项储备\\n\\n递延所得税资产\\n 31, 508, 267.64\\n 29, 895, 945. 55\\n 盈余公积\\n 43,980, 130.86\\n 43, 980, 130.86\\n\\n其他非流动资产\\n 199, 918, 994.21\\n 198, 277, 650.96\\n 未分配利润\\n 249, 115,750.92\\n 251,687, 194.22\\n\\n非流动资产合计\\n 926,799,007.06\\n 918, 152, 600. 24\\n 所有者权益合计\\n 970, 548, 611. 80\\n 969,694, 191.32\\n\\n资产总计\\n 2, 444, 699,646.53\\n 2, 282, 830, 281.98\\n 负债和所有者权益总计\\n 2, 444, 699, 646. 53\\n 2,', 'type': 'Table', 'relation': 'part_of', 'parent_id': 80, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [270.91009521484375, 600.4942016601562, 2376.44189453125, 3738.947021484375], 'page_number': 12, 'layout_width': 2976, 'layout_height': 4220}]}, {'id': 85, 'text': '法定代表人:', 'type': 'Text', 'relation': 'part_of', 'parent_id': 80, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [289.2467346191406, 3749.935302734375, 469.2995910644531, 3795.1474609375], 'page_number': 12, 'layout_width': 2976, 'layout_height': 4220}]}, {'id': 86, 'text': '主管会计工作的负责人:', 'type': 'Text', 'relation': 'part_of', 'parent_id': 80, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [1005, 3750, 1337, 3794], 'page_number': 12, 'layout_width': 2976, 'layout_height': 4220}]}, {'id': 87, 'text': '会计机负山点 编制单位:罗博特科智能科技股份有限公司', 'type': 'Text', 'relation': 'part_of', 'parent_id': 80, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [1749, 3754, 1957, 3785], 'page_number': 12, 'layout_width': 2976, 'layout_height': 4220}, {'system': 'PixelSpace', 'coordinates': [283.9979248046875, 516.6967163085938, 1102.4122314453125, 569.386962890625], 'page_number': 13, 'layout_width': 2976, 'layout_height': 4232}]}, {'id': 88, 'text': '去定代表人:主管会计工作的负责人:会计机构负责', 'type': 'Text', 'relation': 'part_of', 'parent_id': 80, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [281.23419189453125, 3276.935791015625, 1272.7584228515625, 3333.46142578125], 'page_number': 13, 'layout_width': 2976, 'layout_height': 4232}]}, {'id': 89, 'text': '会企02表', 'type': 'Text', 'relation': 'part_of', 'parent_id': 80, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [2413.74609375, 472.7807922363281, 2727.06005859375, 581.3494262695312], 'page_number': 13, 'layout_width': 2976, 'layout_height': 4232}]}, {'id': 90, 'text': '项目\\n 注释号\\n 本期数\\n 上年同期数\\n\\n一、营业收入\\n 168, 963, 233. 43\\n\\n减:营业成本\\n 129, 217, 152.69\\n\\n税金及附加\\n 1, 083, 631. 91\\n\\n销售费用\\n 10, 183,727.42\\n\\n管理费用\\n 9, 554, 809.02\\n\\n研发费用\\n 15, 004, 951. 00\\n\\n财务费用\\n 2,546, 051.21\\n\\n其中:利息费用\\n 3,979,831.52\\n\\n利息收入\\n 405,811.55\\n\\n加:其他收益\\n 3,576,367.71\\n\\n投资收益(损失以“-”号填列)\\n 70,088.75\\n\\n其中:对联营企业和合营企业的投资收益\\n\\n以摊余成本计量的金融资产终止确认收益\\n\\n净散口套期收益(损失以“-”号填列)\\n 公允价值变动收益(损失以“-”号填列)\\n\\n信用减值损失(损失以“”号填列)\\n -5,132,599.50\\n\\n资产减值损失(损失以“-”号填列)\\n -2, 460, 965.27\\n\\n资产处置收益(损失以“-”号填列)\\n\\n二、营业利润(亏损以“-”号填列)\\n -2,574,198.13\\n\\n加:营业外收入\\n 11, 200.00\\n\\n减:营业外支出\\n 8,445.17\\n\\n三、利润总额(亏损总额以“-”号填列)\\n -2,571,443.30\\n\\n减:所得税费用\\n\\n四、净利润(净亏损以“”号填列)\\n -2,571,443.30\\n\\n(一)持续经营净利润(净亏损以“”号填列)\\n\\n特科\\n\\n-2, 571, 443. 30\\n\\n(二)终止经营净利润(净亏损以“-”号填列)\\n\\n五、其他综合收益的税后净额\\n\\n(一)不能重分类进损益的其他综合收益\\n 1.重新计量设定受益计划变动额\\n\\n2.权益法下不能转损益的其他综合收益\\n\\n3.其他权益工具投资公允价值变动\\n 4.企业自身信用风险公允价值变动\\n 95\\n\\n5.其他\\n\\n(二)将重分类进损益的其他综合收益\\n\\n1.权益法下可转损益的其他综合收益\\n\\n2.其他债权投资公允价值变动\\n\\n3.金融资产重分类计入其他综合收益的金额\\n\\n4.其他债权投资信用减值准备\\n\\n5.现金流量套期储备\\n\\n6.外币财务报表折算差额\\n\\n7.其他\\n 六、综合收益总额\\n -2,571, 443.30\\n\\n七、每股收益:\\n\\n(一)基本每股收益\\n (二)稀释每股收益', 'type': 'Table', 'caption': ['会企02表'], 'relation': 'part_of', 'parent_id': 80, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [255.1645965576172, 549.5132446289062, 2727.732421875, 3292.30078125], 'page_number': 13, 'layout_width': 2976, 'layout_height': 4232}]}, {'id': 91, 'text': '现金流量表', 'type': 'Title', 'relation': 'part_of', 'parent_id': 56, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [1103.24462890625, 279.7678527832031, 1692.8310546875, 380.0404357910156], 'page_number': 14, 'layout_width': 2976, 'layout_height': 4224}]}, {'id': 92, 'text': '2024年度1-3月', 'type': 'Text', 'relation': 'part_of', 'parent_id': 91, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [1203.7623291015625, 388.5892639160156, 1540.7171630859375, 447.4249572753906], 'page_number': 14, 'layout_width': 2976, 'layout_height': 4224}]}, {'id': 93, 'text': '法定代表人:', 'type': 'Text', 'relation': 'part_of', 'parent_id': 91, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [265.2300109863281, 3258.275634765625, 541.8499755859375, 3319.33203125], 'page_number': 14, 'layout_width': 2976, 'layout_height': 4224}]}, {'id': 94, 'text': '会企03表 单位:人民币元', 'type': 'Text', 'relation': 'part_of', 'parent_id': 91, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [2114.848876953125, 459.711669921875, 2481.432373046875, 587.0361938476562], 'page_number': 14, 'layout_width': 2976, 'layout_height': 4224}]}, {'id': 95, 'note': ['法定代表人:'], 'text': '项目\\n 本期数\\n 上年同期数\\n\\n、经营活动产生的现金流量:\\n\\n销售商品、提供劳务收到的现金\\n 111, 139,935.73\\n\\n收到的税费返还\\n 18, 595, 317. 11\\n\\n收到其他与经营活动有关的现金\\n 2, 143, 439. 48\\n\\n经营活动现金流入小计\\n 131, 878, 692. 32\\n\\n购买商品、接受劳务支付的现金\\n 177, 551, 148.88\\n\\n支付给职工以及为职工支付的现金\\n 40, 616, 904. 94\\n\\n支付的各项税费\\n 563, 916. 56\\n\\n支付其他与经营活动有关的现金\\n 8,568, 521.93\\n\\n经营活动现金流出小计\\n 227, 300, 492. 31\\n\\n经营活动产生的现金流量净额\\n -95, 421, 799.99\\n\\n收回投资收到的现金\\n\\n取得投资收益收到的现金\\n\\n处置固定资产、无形资产和其他长期资产收回的现金净额\\n\\n处置子公司及其他营业单位收到的现金净额\\n\\n收到其他与投资活动有关的现金\\n 265, 040, 000. 00\\n\\n投资活动现金流入小计\\n 265, 040, 000. 00\\n\\n购建固定资产、无形资产和其他长期资产支付的现金\\n 4, 691, 256. 68\\n\\n投资支付的现金\\n 3, 000, 000. 00\\n\\n取得子公司及其他营业单位支付的现金净额\\n\\n支付其他与投资活动有关的现金\\n 256, 812, 514. 66\\n\\n投资活动现金流出小计\\n 264, 503, 771. 34\\n\\n投资活动产生的现金流量净额\\n 536, 228.66\\n\\n三、筹资活动产生的现金流量:\\n\\n吸收投资收到的现金\\n\\n日北\\n\\n取得借款收到的现金\\n 5,000,aoo.\\n\\n收到其他与筹资活动有关的现金\\n 0,000.00\\n\\n筹资活动现金流入小计\\n 00. 000.00\\n\\n偿还债务支付的现金\\n 99,00,000o\\n\\n分配股利、利润或偿付利息支付的现金\\n 3,797,21\\n\\n支付其他与筹资活动有关的现金\\n 8000795\\n\\n筹资活动现金流出小计\\n 100,391,121.32\\n\\n筹资活动产生的现金流量净额\\n 159, 602, 578.68\\n\\n四、汇率变动对现金及现金等价物的影响\\n 272, 076.85\\n\\n五、现金及现金等价物净增加额\\n 64, 717, 007. 35\\n\\n加:期初现金及现金等价物余额\\n 114, 128, 460.89\\n\\n六、期末现金及现金等价物余额\\n 178, 845, 468. 24\\n\\n法定代表人:\\n 主管会计工作的负责人:', 'type': 'Table', 'relation': 'part_of', 'parent_id': 91, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [255.61831665039065, 487.3421630859375, 2330.6240234375, 3300.182373046875], 'page_number': 14, 'layout_width': 2976, 'layout_height': 4224}]}]}, 'task_status': 'SUCCESS'}, 'success': True}\n" 94 | ] 95 | } 96 | ], 97 | "source": [ 98 | "import requests\n", 99 | "\n", 100 | "task_id = response.json().get(\"data\", {}).get(\"task_id\")\n", 101 | "url = f\"https://api.easydoc.sh/api/v1/parse/{task_id}/result\"\n", 102 | "headers = {\n", 103 | " \"api-key\": APIKEY\n", 104 | "}\n", 105 | "\n", 106 | "response = requests.get(url, headers=headers)\n", 107 | "json_data = response.json()\n", 108 | "print(json_data) # JSON data response" 109 | ] 110 | }, 111 | { 112 | "cell_type": "markdown", 113 | "metadata": {}, 114 | "source": [ 115 | "## Convert Parsed JSON Data to Markdown Format" 116 | ] 117 | }, 118 | { 119 | "cell_type": "markdown", 120 | "metadata": {}, 121 | "source": [ 122 | "### Define Parsing Functions" 123 | ] 124 | }, 125 | { 126 | "cell_type": "code", 127 | "execution_count": 38, 128 | "metadata": {}, 129 | "outputs": [], 130 | "source": [ 131 | "def rule(node, depth):\n", 132 | " txt = \"\"\n", 133 | " if node[\"type\"] == \"Text\":\n", 134 | " txt = node[\"text\"]\n", 135 | " elif node[\"type\"] == \"Title\":\n", 136 | " title_level = \"#\" * depth\n", 137 | " txt = f\"{title_level} {node['text']}\"\n", 138 | " elif node[\"type\"] in (\"Table\", \"Figure\"):\n", 139 | " txt = f\"\"\"\\n```{\"table\" if node[\"type\"] == \"Table\" else \"figure\"}\\n\"\"\"\n", 140 | " txt += node.get(\"vlm_understanding\", node[\"text\"]) + \"\\n```\\n\"\n", 141 | " # if node.get(\"caption\"):\n", 142 | " # txt = f\"\"\"
{node.get('caption')}
\\n\"\"\" + txt\n", 143 | " # if node.get(\"note\"):\n", 144 | " # txt = f\"\"\"
{node.get('note')}
\\n\"\"\" + txt\n", 145 | " return f\"\\n{txt}\\n\"\n", 146 | "\n", 147 | "\n", 148 | "def tree_flat(tree, depth=1):\n", 149 | " rst = \"\"\n", 150 | " for node in tree:\n", 151 | " rst += rule(node, depth)\n", 152 | " if node.get(\"type\") == \"Title\":\n", 153 | " rst += tree_flat(node[\"children\"], depth + 1)\n", 154 | " return rst\n", 155 | "\n", 156 | "\n", 157 | "def build_tree(nodes, parent_id=-1):\n", 158 | " tree = []\n", 159 | " for node in nodes:\n", 160 | " if node[\"parent_id\"] == parent_id:\n", 161 | " children = build_tree(nodes, node[\"id\"])\n", 162 | " node[\"children\"] = children\n", 163 | " tree.append(node)\n", 164 | " return tree" 165 | ] 166 | }, 167 | { 168 | "cell_type": "markdown", 169 | "metadata": {}, 170 | "source": [ 171 | "### Convert Data into Tree Structure" 172 | ] 173 | }, 174 | { 175 | "cell_type": "code", 176 | "execution_count": 39, 177 | "metadata": {}, 178 | "outputs": [ 179 | { 180 | "name": "stdout", 181 | "output_type": "stream", 182 | "text": [ 183 | "[{'id': 1, 'text': '证券代码:300757 证券简称:罗博特科 公告编号:2024-036', 'type': 'Text', 'relation': 'part_of', 'parent_id': -1, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [315.8567810058594, 526.1871948242188, 2620.138427734375, 607.2030029296875], 'page_number': 1, 'layout_width': 2985, 'layout_height': 4220}], 'children': []}, {'id': 2, 'text': '罗博特科智能科技股份有限公司\\n2024年第一季度报告', 'type': 'Title', 'relation': 'part_of', 'parent_id': -1, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [941.9064331054688, 858.51611328125, 1984.0863037109375, 1100.014404296875], 'page_number': 1, 'layout_width': 2985, 'layout_height': 4220}], 'children': [{'id': 3, 'text': '本公司及董事会全体成员保证信息披露的内容真实、准确、完整,没有虚假记载、误\\n导性陈述或重大遗漏', 'type': 'Text', 'relation': 'part_of', 'parent_id': 2, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [322.00018310546875, 1168.36865234375, 2596.83642578125, 1344.1488037109375], 'page_number': 1, 'layout_width': 2985, 'layout_height': 4220}], 'children': []}, {'id': 4, 'text': '重要内容提示:', 'type': 'Title', 'relation': 'part_of', 'parent_id': 2, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [319.34222412109375, 1404.778564453125, 695.0029296875, 1479.1297607421875], 'page_number': 1, 'layout_width': 2985, 'layout_height': 4220}], 'children': [{'id': 5, 'text': '1.董事会、监事会及董事、监事、高级管理人员保证季度报告的真实、准确、完整,不存\\n在虚假记载、误导性陈述或重大遗漏,并承担个别和连带的法律责任。', 'type': 'Text', 'relation': 'part_of', 'parent_id': 4, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [317.8906555175781, 1521.2767333984375, 2573.24462890625, 1693.463623046875], 'page_number': 1, 'layout_width': 2985, 'layout_height': 4220}], 'children': []}, {'id': 6, 'text': '2.公司负责人、主管会计工作负责人及会计机构负责人(会计主管人员)声明:保证季度报\\n告中财务信息的真实、准确、完整。', 'type': 'Text', 'relation': 'part_of', 'parent_id': 4, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [317.68389892578125, 1739.475341796875, 2563.127685546875, 1913.1898193359375], 'page_number': 1, 'layout_width': 2985, 'layout_height': 4220}], 'children': []}, {'id': 7, 'text': '3.第一季度报告是否经过审计', 'type': 'Text', 'relation': 'part_of', 'parent_id': 4, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [317.4787902832031, 1960.9969482421875, 1065.916259765625, 2033.74951171875], 'page_number': 1, 'layout_width': 2985, 'layout_height': 4220}], 'children': []}, {'id': 8, 'text': '口是否', 'type': 'Text', 'relation': 'part_of', 'parent_id': 4, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [319.89593505859375, 2085.794189453125, 544.9219970703125, 2153.55029296875], 'page_number': 1, 'layout_width': 2985, 'layout_height': 4220}], 'children': []}]}, {'id': 9, 'text': '一、主要财务数据', 'type': 'Title', 'relation': 'part_of', 'parent_id': 2, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [320.4491882324219, 2183.424560546875, 791.25146484375, 2255.690673828125], 'page_number': 1, 'layout_width': 2985, 'layout_height': 4220}], 'children': [{'id': 10, 'text': '(一)主要会计数据和财务指标', 'type': 'Title', 'relation': 'part_of', 'parent_id': 9, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [340.4506530761719, 2331.850830078125, 1056.826904296875, 2399.82080078125], 'page_number': 1, 'layout_width': 2985, 'layout_height': 4220}], 'children': [{'id': 11, 'text': '公司是否需追溯调整或重述以前年度会计数据', 'type': 'Text', 'relation': 'part_of', 'parent_id': 10, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [323.6429138183594, 2473.1220703125, 1197.9957275390625, 2531.212890625], 'page_number': 1, 'layout_width': 2985, 'layout_height': 4220}], 'children': []}, {'id': 12, 'text': '口是否', 'type': 'Text', 'relation': 'part_of', 'parent_id': 10, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [318.265380859375, 2545.817138671875, 490.5830078125, 2596.267822265625], 'page_number': 1, 'layout_width': 2985, 'layout_height': 4220}], 'children': []}, {'id': 13, 'text': '本报告期比上年同期增减\\n\\n本报告\\n 短能\\n 上年同期\\n\\n(%)\\n\\n营业收入(元)\\n 259,047,714.77\\n 1.52%\\n\\n归属于上市公司股东的净利\\n\\n4,236,096.83\\n 39.23%\\n\\n润(元)\\n\\n份有\\n 归属于上市公司股东的扣除\\n 罗\\n\\n非经常性损益的净利润\\n 5.708731.70\\n 4386.928.71\\n 30.124h\\n\\n(元)\\n 中\\n\\n经营活动产生的现金流量净\\n\\n-36763.463-58\\n 346.989\\n\\n额(元)\\n\\n基本每股收益(元/股)\\n 0.05\\n 25:0004\\n\\nH释每股收益(元/股)\\n 0.05\\n 00\\n 25.01\\n\\n加权平均净资产收益率\\n 0.60%\\n 0:1246\\n 本报告期末比上年度末增减\\n\\n本报告期末\\n 上年度木\\n (%)\\n\\n总资产(元)\\n 2,715,501,446.27\\n 2.567378.379.10\\n 557714\\n\\n归属于上市公司股东的所有\\n\\n990,290,297.49\\n 982.301.05S.98\\n 081\\n\\n者权益(元)', 'type': 'Figure', 'caption': ['口是否'], 'relation': 'part_of', 'parent_id': 10, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [292.20123291015625, 2589.0966796875, 2638.789306640625, 3658.919921875], 'page_number': 1, 'layout_width': 2985, 'layout_height': 4220}], 'vlm_understanding': '这张图片显示的是一份财务报告,其中包含了营业收入、归属于上市公司股东的净利润、归属于上市公司股东的扣除非经常性损益后的净利润等各项财务指标的数据对比。具体数据如下:\\n\\n- 本报告期营业收入为2,029,838,490元,比上年同期增长1.52%。\\n- 本报告期归属于上市公司股东的净利润为5,898,882,467元,比上年同期增长39.23%。\\n- 本报告期归属于上市公司股东的扣除非经常性损益后的净利润为5,708,214,767元,比上年同期增长30.12%。\\n- 本报告期经营活动产生的现金流量净额为-26,763,463,58元,比上年同期减少346.98%。\\n\\n此外,报告还列出了基本每股收益、稀释每股收益和加权平均净资产收益率等财务指标的数据对比。这些数据表明公司在过去的一段时间内取得了显著的增长,但也需要注意经营活动现金流量净额的大幅下降。', 'children': []}]}, {'id': 14, 'text': '(二)非经常性损益项目和金额', 'type': 'Title', 'relation': 'part_of', 'parent_id': 9, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [340.4898986816406, 428.55999755859375, 1061.4381103515625, 497.0037231445313], 'page_number': 2, 'layout_width': 2981, 'layout_height': 4218}], 'children': [{'id': 15, 'text': '适用口不适用', 'type': 'Text', 'relation': 'part_of', 'parent_id': 14, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [315.15826416015625, 570.2887573242188, 624.8997192382812, 628.2418823242188], 'page_number': 2, 'layout_width': 2981, 'layout_height': 4218}], 'children': []}, {'id': 16, 'text': '单位:元', 'type': 'Text', 'relation': 'part_of', 'parent_id': 14, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [2418.277099609375, 624.9008178710938, 2603.00390625, 677.547607421875], 'page_number': 2, 'layout_width': 2981, 'layout_height': 4218}], 'children': []}, {'id': 17, 'note': ['其他符合非经常性损益定义的损益项目的具体情况'], 'text': '项目\\n 本报告期金额\\n 说明\\n\\n非流动性资产处置损益(包括已计提\\n\\n26,418.39\\n\\n资产减值准备的冲销部分)\\n\\n计入当期损益的政府补助(与公司正\\n 常经营业务密切相关、符合国家政策\\n\\n176,228.26\\n\\n规定、按照确定的标准享有、对公司\\n 损益产生持续影响的政府补助除外)\\n 除上述各项之外的其他营业外收入和\\n\\n33,055.18\\n\\n支出\\n\\n减:所得税影响额\\n 45,597.02\\n\\n少数股东权益影响额(税后)\\n 257.09\\n\\n合计\\n 189,847.72', 'type': 'Table', 'relation': 'part_of', 'parent_id': 14, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [293.28863525390625, 676.8162231445312, 2616.09423828125, 1531.1947021484375], 'page_number': 2, 'layout_width': 2981, 'layout_height': 4218}], 'children': []}, {'id': 18, 'text': '其他符合非经常性损益定义的损益项目的具体情况', 'type': 'Text', 'relation': 'part_of', 'parent_id': 14, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [311.8681335449219, 1534.6885986328125, 1282.835693359375, 1588.6583251953125], 'page_number': 2, 'layout_width': 2981, 'layout_height': 4218}], 'children': []}, {'id': 19, 'text': '口适用不适用', 'type': 'Text', 'relation': 'part_of', 'parent_id': 14, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [315.22442626953125, 1601.5325927734375, 620.3020629882812, 1655.0225830078125], 'page_number': 2, 'layout_width': 2981, 'layout_height': 4218}], 'children': []}, {'id': 20, 'text': '公司不存在其他符合非经常性损益定义的损益项目的具体情况。', 'type': 'Text', 'relation': 'part_of', 'parent_id': 14, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [318.6564025878906, 1667.728759765625, 1513.1689453125, 1721.802490234375], 'page_number': 2, 'layout_width': 2981, 'layout_height': 4218}], 'children': []}, {'id': 21, 'text': '将《公开发行证券的公司信息披露解释性公告第1号——非经常性损益》中列举的非经常性损益项日界定为经常性损益\\n项口的情况说明', 'type': 'Text', 'relation': 'part_of', 'parent_id': 14, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [315.8684997558594, 1733.7000732421875, 2575.60986328125, 1850.11181640625], 'page_number': 2, 'layout_width': 2981, 'layout_height': 4218}], 'children': []}, {'id': 22, 'text': '口适用不适用', 'type': 'Text', 'relation': 'part_of', 'parent_id': 14, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [311, 1863, 617, 1924], 'page_number': 2, 'layout_width': 2981, 'layout_height': 4218}], 'children': []}, {'id': 23, 'text': '将《公开发行证券的公司信息披露解释性公告第1号一非经常性损益》中列举的非经常性损益项目界久\\n的项目的情形。', 'type': 'Text', 'relation': 'part_of', 'parent_id': 14, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [536.7569580078125, 1929.0550537109375, 2510.558349609375, 2044.3538818359375], 'page_number': 2, 'layout_width': 2981, 'layout_height': 4218}], 'children': []}]}, {'id': 24, 'text': '(三)主要会计数据和财务指标发生变动的情况及原因', 'type': 'Title', 'relation': 'part_of', 'parent_id': 9, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [335.5875244140625, 2118.87451171875, 1553.0322265625, 2184.8291015625], 'page_number': 2, 'layout_width': 2981, 'layout_height': 4218}], 'children': [{'id': 25, 'text': '适用口不适用', 'type': 'Text', 'relation': 'part_of', 'parent_id': 24, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [314.5784912109375, 2257.774658203125, 618.5775756835938, 2314.113525390625], 'page_number': 2, 'layout_width': 2981, 'layout_height': 4218}], 'children': []}, {'id': 26, 'text': '1、资产负债表项目重大变动情况', 'type': 'Text', 'relation': 'part_of', 'parent_id': 24, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [315.1971740722656, 2389.39208984375, 958.6882934570312, 2450.660400390625], 'page_number': 2, 'layout_width': 2981, 'layout_height': 4218}], 'children': []}, {'id': 27, 'text': '单位:元', 'type': 'Text', 'relation': 'part_of', 'parent_id': 24, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [2417, 2516, 2606, 2598], 'page_number': 2, 'layout_width': 2981, 'layout_height': 4218}], 'children': []}, {'id': 28, 'note': ['2、利润表项目重大变动情况'], 'text': '资产负债表项目\\n 本报告期末\\n 上年度末\\n 增减幅度\\n 原因分析\\n\\n主要系本期末持有的结\\n\\n交易性金融资产\\n 10,000,000.00\\n 100.00%\\n\\n构性存款增加所致\\n\\n主要系本期末增值税留\\n 其他流动资产\\n 8,614,782.41\\n 19,196,956.51\\n -55.12%\\n\\n抵税额减少所致\\n\\n主要系公司支付部分到\\n\\n应付票据\\n 79,882,961.26\\n 117,003,716.55\\n -31.73%期银行承兑汇票使余额\\n\\n减少所致\\n\\n主要系本期发放上期末\\n\\n应付职工薪酬\\n 9,569,235.08\\n 25,512,136.67\\n -62.49%计提的奖金使得余额减\\n\\n少所致\\n\\n主要系公司盈利能力提\\n\\n应交税费\\n 5,926,806.75\\n 4,387,630.71\\n 35.08%升、期末应交所得税余\\n\\n额上升所致', 'type': 'Table', 'relation': 'part_of', 'parent_id': 24, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [306.45159912109375, 2593.79150390625, 2641.206787109375, 3518.916748046875], 'page_number': 2, 'layout_width': 2981, 'layout_height': 4218}], 'children': []}, {'id': 29, 'text': '2、利润表项目重大变动情况', 'type': 'Text', 'relation': 'part_of', 'parent_id': 24, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [306.2627868652344, 3590.086669921875, 871.8177490234375, 3650.93359375], 'page_number': 2, 'layout_width': 2981, 'layout_height': 4218}], 'children': []}, {'id': 30, 'note': ['3、现金流量表项目重大变动情况'], 'text': '利润表项目\\n 本期数\\n 上年同期数\\n 增减幅度\\n 原因分析\\n\\n主要系本期缴纳增值税\\n\\n税金及附加\\n 1,990,804.83\\n 1,353,377.73\\n 47.10%增加使得城建、教育费\\n\\n附加上升所致\\n\\n主要系本期计提股份支\\n\\n管理费用\\n 12,220,781.93\\n 8.319,216.64\\n 46.90%付费用及资产重组中介\\n\\n费用上升所致\\n\\n主要系本期增值税加计\\n\\n其他收益\\n 3,675,556.17\\n 1,735,321.57\\n 111.81%\\n\\n抵减增加所致\\n\\n主要系公司盈利能力提\\n\\n所得税费用\\n 2,461,205.83\\n 384.346.03\\n 540.36%高、所得税费用上升所\\n\\n致', 'type': 'Table', 'relation': 'part_of', 'parent_id': 24, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [311.7679138183594, 425.8254699707031, 2651.232421875, 1212.687255859375], 'page_number': 3, 'layout_width': 2980, 'layout_height': 4222}], 'children': []}, {'id': 31, 'text': '3、现金流量表项目重大变动情况', 'type': 'Text', 'relation': 'part_of', 'parent_id': 24, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [315.4154052734375, 1286.0506591796875, 962.6741333007812, 1349.240966796875], 'page_number': 3, 'layout_width': 2980, 'layout_height': 4222}], 'children': []}, {'id': 32, 'text': '单位:元', 'type': 'Text', 'relation': 'part_of', 'parent_id': 24, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [2426.898681640625, 1420.502197265625, 2611.62109375, 1475.388671875], 'page_number': 3, 'layout_width': 2980, 'layout_height': 4222}], 'children': []}, {'id': 33, 'text': '现金流量表项目\\n 本期数\\n 上年同期数\\n 增减幅度\\n 原因分析\\n\\n主要系本期支付较多供\\n\\n经营活动产生的现金流\\n -119,627,328.05\\n -26,763,463.58\\n -346.98%应商款项使经营活动现\\n\\n量净额\\n 金净流出增加所致\\n\\n主要系本期未有到期理\\n\\n投资活动产生的现金流\\n\\n-19,648,339.75\\n 14,656,326.35\\n -234.06%财产品收回使投资现金\\n\\n量净额\\n 流入减少所致\\n\\n主要系本期公司银行借\\n\\n筹资活动产生的现金流\\n 169,602,578.68\\n -18,498,363.85\\n 1,016.85%款增加使筹资现金净流\\n\\n量净额\\n 入增加所致', 'type': 'Table', 'caption': ['单位:元'], 'relation': 'part_of', 'parent_id': 24, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [313.1260986328125, 1487.9495849609375, 2655.34033203125, 2156.074951171875], 'page_number': 3, 'layout_width': 2980, 'layout_height': 4222}], 'children': []}]}]}, {'id': 34, 'text': '二、股东信息', 'type': 'Title', 'relation': 'part_of', 'parent_id': 2, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [318.6271057128906, 2229.46923828125, 673.6566772460938, 2303.70703125], 'page_number': 3, 'layout_width': 2980, 'layout_height': 4222}], 'children': [{'id': 35, 'text': '(一)普通股股东总数和表决权恢复的优先股股东数量及前十名股东持股情况表', 'type': 'Text', 'relation': 'part_of', 'parent_id': 34, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [337.2300109863281, 2374.5498046875, 2125.938232421875, 2444.703125], 'page_number': 3, 'layout_width': 2980, 'layout_height': 4222}], 'children': []}, {'id': 36, 'text': '单位:股', 'type': 'Text', 'relation': 'part_of', 'parent_id': 34, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [2428, 2493, 2622, 2569], 'page_number': 3, 'layout_width': 2980, 'layout_height': 4222}], 'children': []}, {'id': 37, 'note': ['持股5%以上股东、前10名股东及前10名无限售流通股股东参与转融通业务出借股份情况\\n口适用不适用'], 'text': '报告期末普通股股东总数\\n 24.426报告期末表决权恢复的优先股股东总数(如有)\\n 0\\n\\n前10名股东持股情况(不含通过转融通出借股份)\\n\\n持股比例\\n 持有有限售条\\n 质押、标记或冻结情况\\n\\n股东名称\\n 股东性质\\n 持股数量\\n\\n(%)\\n 件的股份数量\\n 股份状态\\n 数量\\n\\n苏州元颜昇企\\n\\n境内非国有法\\n\\n业管理咨询有\\n 25.66%\\n 28,326,600.00\\n 0.00质押\\n 11,238,000.00\\n\\n人\\n\\n限公司\\n\\n宁波科骏企业\\n\\n境内非国有法\\n\\n管理咨询中心\\n 6.92%\\n 7,641,100.00\\n 0.00\\n 不适用\\n 0.00\\n\\n人\\n\\n(有限合伙)\\n\\n夏承周\\n 境内自然人\\n 5.02%\\n 5,546,200.00\\n 0.00\\n 不适用\\n 0.00\\n\\n戴军\\n 境内自然人\\n 4.27%\\n 4,709,577.00\\n 4,709,577.00\\n 质押\\n 3,700,000.00\\n\\n李洁\\n 境内自然人\\n 4.00%\\n 4,418,240.00\\n 0.00\\n 不适用\\n 0.00\\n\\n土暨钟\\n 境内自然人\\n 1.71%\\n 1.883.355.00\\n 0.00\\n 不适用\\n 0.00\\n\\n上宏军\\n 境内自然人\\n 1.42%\\n 1,569,859.00\\n 1,569,859.00\\n 不适用\\n 0.00\\n\\nT墨\\n 境内自然人\\n 1.24%\\n 1,366,500.00\\n 0.00\\n 不适用\\n 0.00\\n\\n香港中央结算\\n\\n境外法人\\n 0.91%\\n 999,907.00\\n 0.00\\n 不适用\\n 0.00\\n\\n有限公司\\n\\n基本养老保险\\n\\n其他\\n 0.88%\\n 974,000.00\\n 0.00\\n 不适用\\n 0.00\\n\\n基金一二零三组合\\n\\n前10名无限售条件股东持股情况\\n\\n股份种类\\n\\n股东名称\\n 持有无限售条件股份数量\\n 股份种类\\n 数量\\n\\n苏州元颌昇企业管理咨询有限公\\n\\n28,326,600.00\\n 人民币普通股\\n 28,326,600.00\\n\\n宁波科骏企业管理咨询中心(有\\n\\n7,641,100.00\\n 人民币普通股\\n 7,641,100.00\\n\\n限合伙)\\n 夏承周\\n 5,546,200.00\\n 人民币普通股\\n 5,546,200.00\\n\\n李洁\\n 4,418,240.00\\n 人民币普通股\\n 4,418,240.00\\n\\n王暨钟\\n 1,883,355.00\\n 人民币普通股\\n 1,883,355.00\\n\\n工墨\\n 1,366,500.00\\n 人民币普通股\\n 1,366,500.00\\n\\n香港中央结算有限公司\\n 999,907.00\\n 人民币普通股\\n 999,907.00\\n\\n基本养老保险基金·二零组合\\n 974,000.00\\n 人民币普通股\\n 974,000.00\\n\\n中国建设银行股份有限公司一鹏\\n 华沪深港新兴成长灵活配置混合\\n 765,550.00\\n 人民币普通股\\n 765,550.00\\n\\n型证券投资基金\\n\\n张建成\\n 750.000.00人民币普通股\\n 750,000.00\\n\\n公司实际控制人戴车、控股股东苏州元颌昇企业管理咨询有限公\\n 司、股东宁波科骏企业管理咨询中心(有限合伙)三位股东为一致行\\n\\n上述股东关联关系或一致行动的说明\\n 动人。除此之外,未知公司上述股东之间是否存在关联关系,也未\\n 知上述股东之问是否属于《上市公司收购管理办法》规定的一致行\\n\\n动人。\\n\\n股东王墨通过普通证券账户持有公司0股,通过国泰君安证券股份\\n\\n前10名股东参与融资融券业务股东情况说明(如\\n\\n有限公司客户信用交易担保证券账户持有公司1,366.500股,合计\\n 有)\\n\\n1,366.500股。', 'type': 'Table', 'caption': ['单位:股'], 'relation': 'part_of', 'parent_id': 34, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [289.37982177734375, 2569.94189453125, 2630.47265625, 3763.685791015625], 'page_number': 3, 'layout_width': 2980, 'layout_height': 4222}, {'system': 'PixelSpace', 'coordinates': [291.8116149902344, 424.4527893066406, 2619.323486328125, 1972.673095703125], 'page_number': 4, 'layout_width': 2984, 'layout_height': 4220}], 'children': []}, {'id': 38, 'text': '持股5%以上股东、前10名股东及前10名无限售流通股股东参与转融通业务出借股份情况\\n口适用不适用', 'type': 'Text', 'relation': 'part_of', 'parent_id': 34, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [310.4252014160156, 1990.191162109375, 2039.1160888671875, 2130.52685546875], 'page_number': 4, 'layout_width': 2984, 'layout_height': 4220}], 'children': []}, {'id': 39, 'text': '前10名股东及前10名无限售流通股股东因转融通出借/归还原因导致较上期发生变化\\n口适用不适用', 'type': 'Text', 'relation': 'part_of', 'parent_id': 34, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [318.3240661621094, 2153.504150390625, 1937.195556640625, 2291.609619140625], 'page_number': 4, 'layout_width': 2984, 'layout_height': 4220}], 'children': []}, {'id': 40, 'text': '(二)公司优先股股东总数及前10名优先股股东持股情况表', 'type': 'Title', 'relation': 'part_of', 'parent_id': 34, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [335.2047119140625, 2367.120849609375, 1677.72509765625, 2434.8564453125], 'page_number': 4, 'layout_width': 2984, 'layout_height': 4220}], 'children': [{'id': 41, 'text': '口适用不适用', 'type': 'Text', 'relation': 'part_of', 'parent_id': 40, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [310.3609924316406, 2506.648681640625, 617.2613525390625, 2566.39453125], 'page_number': 4, 'layout_width': 2984, 'layout_height': 4220}], 'children': []}]}, {'id': 42, 'text': '(三)限售股份变动情况', 'type': 'Title', 'relation': 'part_of', 'parent_id': 34, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [335.6437683105469, 2645.825439453125, 894.114990234375, 2713.138916015625], 'page_number': 4, 'layout_width': 2984, 'layout_height': 4220}], 'children': [{'id': 43, 'text': '口适用不适用', 'type': 'Text', 'relation': 'part_of', 'parent_id': 42, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [311.0343017578125, 2801.241943359375, 615.0205688476562, 2860.381103515625], 'page_number': 4, 'layout_width': 2984, 'layout_height': 4220}], 'children': []}]}]}, {'id': 44, 'text': '三、其他重要事项', 'type': 'Title', 'relation': 'part_of', 'parent_id': 2, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [309.98858642578125, 2938.99560546875, 784.7398681640625, 3012.078125], 'page_number': 4, 'layout_width': 2984, 'layout_height': 4220}], 'children': [{'id': 45, 'text': '适用口不适用', 'type': 'Text', 'relation': 'part_of', 'parent_id': 44, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [310.76275634765625, 3085.094482421875, 613.1954345703125, 3144.023193359375], 'page_number': 4, 'layout_width': 2984, 'layout_height': 4220}], 'children': []}, {'id': 46, 'text': '1、公司发行股份及支付现金购买资产并募集配套资企事项', 'type': 'Text', 'relation': 'part_of', 'parent_id': 44, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [313.190185546875, 3171.60107421875, 1426.772705078125, 3232.255615234375], 'page_number': 4, 'layout_width': 2984, 'layout_height': 4220}], 'children': []}, {'id': 47, 'text': '(1)2024年1月31口,公司收到深圳证券交易所的通知,公司因重人资产重组申请文件中记载的财务资料已过有效期, 需要补充提交。按照《深圳证券交易所上市公司重大资产重组市核规则》的相关规定,深圳证券交易所对公司木次重组\\n中止审核,具体内容详见公司于2024年2月1日在巨潮资讯网(http://www.cninfo.com.cn)上披露的相关公告。', 'type': 'Text', 'relation': 'part_of', 'parent_id': 44, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [310.01446533203125, 3269.765869140625, 2604.41796875, 3481.11181640625], 'page_number': 4, 'layout_width': 2984, 'layout_height': 4220}], 'children': []}, {'id': 48, 'text': '(2)2024年2月27日,公司召开了第三届董事会第十二次会议和第三届监事会第十一次会议,审议通过了《关于调整 公司发行股份及支付现金购买资产并募集配套资金方案的议案》等相关议案,并向深圳证券交易所更新补充了以2023年 10月31口为审计基准口的加期审计及申请文件。根据《深圳证券交易所上市公司重大资产重组审核规则》的相关规定, 公司已向深圳证券交易所提交了恢复审核的中请,具体内容详见公司于2024年2月28H在已潮资讯网\\n(http://www.cninfo.com.cn)上披露的相关公告。', 'type': 'Text', 'relation': 'part_of', 'parent_id': 44, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [308.29876708984375, 3518.00048828125, 2601.054931640625, 3729.844482421875], 'page_number': 4, 'layout_width': 2984, 'layout_height': 4220}, {'system': 'PixelSpace', 'coordinates': [326.5472717285156, 440.6014404296875, 2618.9951171875, 580.0596923828125], 'page_number': 5, 'layout_width': 2984, 'layout_height': 4221}], 'children': []}, {'id': 49, 'text': '(3)2024年2月28日,公司收到深圳证券交易所同意恢复本次重组审核的回复,具体内容详见公司于2024年3月1日\\n在巨潮资讯网(http://www.cninfo.com.cn)上披露的相关公告。', 'type': 'Text', 'relation': 'part_of', 'parent_id': 44, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [327.15814208984375, 613.8407592773438, 2615.97802734375, 752.0076293945312], 'page_number': 5, 'layout_width': 2984, 'layout_height': 4221}], 'children': []}, {'id': 50, 'text': '2、独立董事变动情况', 'type': 'Text', 'relation': 'part_of', 'parent_id': 44, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [318.9327392578125, 796.0321655273438, 744.7630615234375, 854.2908935546875], 'page_number': 5, 'layout_width': 2984, 'layout_height': 4221}], 'children': []}, {'id': 51, 'text': '2024年2月6日,公司独立董事牛丹先生因个人原因申请辞去公司独立董事及薪酬与考核委员会主任委员(召集人)、 提名委员会委员、战略委员会委员的职务。辞职后,牛丹先生不再担任公司及子公司任何职务。鉴于牛丹先生辞职会导 致公司董事会及相关专门委员会中独立董事所比例不符合法律法规和《公司章程》的规定,其辞职在公可股东大会选\\n举产生新任独立董事之后生效。', 'type': 'Text', 'relation': 'part_of', 'parent_id': 44, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [323.7221374511719, 885.248291015625, 2600.6171875, 1174.217529296875], 'page_number': 5, 'layout_width': 2984, 'layout_height': 4221}], 'children': []}, {'id': 52, 'text': '2024年2月7日,公司召开第三届董事会第十·次会议,审议通过了《关于补选公司第三届董事会独立董事的议案》。 经董事会提名委员会资格审查,公司董事会同意提名凌旭峰先生为公司第一届董事会独立董事候选人,并在股东大会审 议通过后,由其担任新酬与考核委员会主任委员(们集人)、提名委员会委员、战略委员会委员,任期门股东人会审议 通过之日起至第三届董事会任期届满之日止。具体内容见公司于2024年2月8日在巳潮资讯网\\n(http://www.cninfo.com.cn)1:披露的关公告。', 'type': 'Text', 'relation': 'part_of', 'parent_id': 44, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [324.7813415527344, 1207.56787109375, 2621.325439453125, 1577.9739990234375], 'page_number': 5, 'layout_width': 2984, 'layout_height': 4221}], 'children': []}, {'id': 53, 'text': '2024年2月23日,公司召开2024年第·一次临时股东大会,审议通过了《关于补选公司第三届董事会独立重事的议案》,\\n同意补选凌旭峰先生为公司第一届董事会独立董事,任期自股东大会审议通过之日起至第一届董事会任期届满之日止。\\n具体内容见公司于2024年2月24口在巨潮资讯网(http://www.cninfo.com.cn)上披露的相关公告。', 'type': 'Text', 'relation': 'part_of', 'parent_id': 44, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [326.1220703125, 1611.48486328125, 2629.96728515625, 1826.9024658203125], 'page_number': 5, 'layout_width': 2984, 'layout_height': 4221}], 'children': []}, {'id': 54, 'text': '3、监事变动情况', 'type': 'Text', 'relation': 'part_of', 'parent_id': 44, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [323.52490234375, 1871.4365234375, 658.3028564453125, 1930.3126220703125], 'page_number': 5, 'layout_width': 2984, 'layout_height': 4221}], 'children': []}, {'id': 55, 'text': '2024年3月25日,公司职工代表监事唐涛先生因个人原因申请辞去公司职工代表监事职务。辞职后,唐涛先生将不再 担任公司任何职务。鉴丁唐涛先生辞去监事职务后,会导致公司监事会人数低于法定人数的情形,为保证监事会正常运 行,公司于2024年3月25H召开职工代衣大会,经与会职工代表币议并表决,同意补选庞胜先生为公司第二届监事会 职工代表监事,与公司其他监事共同组成公司第一届监事会,任期自本次职工代表大会通过之日起至第一届监事会庙满\\n之口it。具体内容见公司于2024年3月26口在巨潮资讯网(http://www.cninfo.com.cn)上披露的相关公告。', 'type': 'Text', 'relation': 'part_of', 'parent_id': 44, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [324.17626953125, 1963.6488037109375, 2601.010986328125, 2328.64208984375], 'page_number': 5, 'layout_width': 2984, 'layout_height': 4221}], 'children': []}]}, {'id': 56, 'text': '四、季度财务报表', 'type': 'Title', 'relation': 'part_of', 'parent_id': 2, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [323.5867919921875, 2414.353515625, 796.4645385742188, 2486.809814453125], 'page_number': 5, 'layout_width': 2984, 'layout_height': 4221}], 'children': [{'id': 57, 'text': '(一)财务报表', 'type': 'Title', 'relation': 'part_of', 'parent_id': 56, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [345.548583984375, 2562.35791015625, 699.9654541015625, 2626.905029296875], 'page_number': 5, 'layout_width': 2984, 'layout_height': 4221}], 'children': [{'id': 58, 'text': '1、合并资产负债表', 'type': 'Title', 'relation': 'part_of', 'parent_id': 57, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [324.77825927734375, 2701.587158203125, 764.799072265625, 2767.738525390625], 'page_number': 5, 'layout_width': 2984, 'layout_height': 4221}], 'children': [{'id': 59, 'text': '编制单位:罗博特科智能科技股份有限公司', 'type': 'Text', 'relation': 'part_of', 'parent_id': 58, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [324.03021240234375, 2839.523193359375, 1158.9158935546875, 2899.54296875], 'page_number': 5, 'layout_width': 2984, 'layout_height': 4221}], 'children': []}, {'id': 60, 'text': '2024年03月31口', 'type': 'Text', 'relation': 'part_of', 'parent_id': 58, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [1283.2559814453125, 2898.146484375, 1650.071533203125, 2954.607666015625], 'page_number': 5, 'layout_width': 2984, 'layout_height': 4221}], 'children': []}, {'id': 61, 'text': '单位:元', 'type': 'Text', 'relation': 'part_of', 'parent_id': 58, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [2437.37744140625, 2951.8154296875, 2621.9970703125, 3003.2900390625], 'page_number': 5, 'layout_width': 2984, 'layout_height': 4221}], 'children': []}, {'id': 62, 'note': ['法定代表人:戴军', '主管会计工作负责人:杨雪莉'], 'text': '项目\\n 期末余额\\n 期初余额\\n\\n流动资产:\\n 货币资金\\n 260,877,557.28\\n 238,808,283.68\\n\\n结算备付金\\n 拆出资金\\n\\n交易性金融资产\\n 10,000,000.00\\n\\n衍生金融资产\\n\\n应收票据\\n 应收账款\\n 334,136,108.85\\n 285,965,826.98\\n\\n应收款项融资\\n 68,747,319.59\\n 76,414,883.83\\n\\n预付款项\\n 49,310,927.24\\n 42,772,667.55\\n\\n应收保费\\n\\n应收分保账款应收分保合同准备金\\n\\n其他应收款\\n 1,093,941.60\\n 1,298,299.32\\n\\n其中:应收利息\\n 应收股利\\n 买入返售金融资产\\n\\n存货\\n 568,718,980.65\\n 500,618,635.40\\n\\n其中:数据资源\\n\\n合同资产\\n 570,666,327.42\\n 566,183,861.12\\n\\n持有待售资产\\n\\n年内到期的非流动资产\\n\\n其他流动资产\\n 8,614,782.41\\n 19,196,956.51\\n\\n流动资产合计\\n 1,872,165,945.04\\n 1,731,259,414.39\\n\\n非流动资产:\\n\\n发放贷款和垫款\\n\\n债权投资\\n\\n其他债权投资\\n 长期应收款\\n 长期股权投资\\n 209,582,294.62\\n 209,512,205.87\\n\\n其他权益工具投资\\n 其他非流动金融资产\\n 30,000,000.00\\n 30,000,000.00\\n\\n投资性房地产\\n\\n固定资产\\n 264,907,961.48\\n 270,487,621.04\\n\\n在建工程\\n 25,933,539.72\\n 21,650,676.11\\n\\n生产性生物资产\\n\\n油气资产\\n 使用权资产\\n 818,622.12\\n 889,004.94\\n\\n无形资产\\n 51,203,750.73\\n 52,637,409.34\\n\\n其中:数据资源\\n\\n开发支出\\n\\n其中:数据资源\\n\\n商誉\\n 7,744,546.19\\n 7,744,546.19\\n\\n长期待摊费用\\n 193,425.06\\n 157,787.00\\n\\n递延所得税资产\\n 32,018,709.80\\n 32,177,031.56\\n\\n其他非流动资产\\n 220,932,651.51\\n 210,862,680.96\\n\\n非流动资产合计\\n 843,335,501.23\\n 836,118,963.01\\n\\n资产总计\\n 2,715,501,446.27\\n 2,567,378,377.40\\n\\n流动负债:\\n 短期借款\\n 811,876,352.02\\n 641,396,816.34\\n\\n向中央银行借款\\n\\n拆入资金\\n\\n交易性金融负债\\n 衍生金融负债\\n\\n应付票据\\n 79,882,961.26\\n 117,003,716.55\\n\\n应付账款\\n 533,018,940.58\\n 522,971,287.90\\n\\n预收款项\\n 合同负债\\n 219,908,300.39\\n 204,173,827.28\\n\\n卖出回购金融资产款\\n 吸收存款及同业存放\\n\\n代理买卖证券款\\n 代理承销证券款\\n 应付职工薪酬\\n 9,569,235.08\\n 25,512,136.67\\n\\n应交税费\\n 5,926,806.75\\n 4,387,630.71\\n\\n其他应付款\\n 16,207,156.69\\n 18,642,889.25\\n\\n其中:应付利息\\n 应付股利应付手续费及佣金\\n\\n应付分保账款\\n 持有待售负债\\n\\n一年内到期的非流动负债\\n 10,121,564.90\\n 10,147,374.97\\n\\n其他流动负债\\n 20,843,156.06\\n 22,842,240.66\\n\\n流动负债合计\\n 1,707,354,473.73\\n 1,567,077,920.33\\n\\n非流动负债:\\n\\n保险合同准备金\\n\\n长期借款\\n 20,011,933.26\\n 20,022,622.57\\n\\n应付债券\\n\\n其中:优先股\\n 永续债\\n\\n租赁负债\\n 11,252.69\\n\\n长期应付款\\n\\n长期应付职工薪酬\\n\\n预计负债\\n 递延收益\\n\\n递延所得税负债\\n 其他非流动负债\\n 非流动负债合计\\n 20,011,933.26\\n 20,033,875.26\\n\\n负债合计\\n 1,727,366,406.99\\n 1,587,111,795.59\\n\\n所有者权益:\\n\\n股本\\n 110,388,986.00\\n 110,388,986.00\\n\\n其他权益工具\\n 其中:优先股\\n 永续债\\n\\n资本公积\\n 573,418,828.59\\n 571,605,286.90\\n\\n减:库存股\\n 3,265,691.50\\n 3,265,691.50\\n\\n其他综合收益\\n 9,395,316.14\\n 9,118,601.78\\n\\n专项储备\\n 盈余公积\\n 43,980,130.86\\n 43,980,130.86\\n\\n一般风险准备\\n 未分配利润\\n 256,372,727.40\\n 250,474,644.92\\n\\n归属于母公司所有者权益合计\\n 990,290,297.49\\n 982,301,958.96\\n\\n少数股东权益\\n -2,155,258.21\\n -2,035,377.15\\n\\n所有者权益合计\\n 988,135,039.28\\n 980,266,581.81\\n\\n负债和所有者权益总计\\n 2,715,501,446.27\\n 2,567,378,377.40', 'type': 'Table', 'caption': ['单位:元'], 'relation': 'part_of', 'parent_id': 58, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [293.3638916015625, 3004.382080078125, 2639.39306640625, 3791.01318359375], 'page_number': 5, 'layout_width': 2984, 'layout_height': 4221}, {'system': 'PixelSpace', 'coordinates': [279.128173828125, 406.40338134765625, 2611.954345703125, 3766.974853515625], 'page_number': 6, 'layout_width': 2984, 'layout_height': 4216}, {'system': 'PixelSpace', 'coordinates': [288.4229736328125, 426.4904479980469, 2632.387451171875, 2637.951171875], 'page_number': 7, 'layout_width': 2979, 'layout_height': 4220}], 'children': []}, {'id': 63, 'text': '法定代表人:戴军', 'type': 'Text', 'relation': 'part_of', 'parent_id': 58, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [317.031494140625, 2634.614501953125, 669.7236328125, 2686.75], 'page_number': 7, 'layout_width': 2979, 'layout_height': 4220}], 'children': []}, {'id': 64, 'text': '主管会计工作负责人:杨雪莉', 'type': 'Text', 'relation': 'part_of', 'parent_id': 58, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [1180.3681640625, 2632.03173828125, 1753.974853515625, 2686.260986328125], 'page_number': 7, 'layout_width': 2979, 'layout_height': 4220}], 'children': []}, {'id': 65, 'text': '会计机构负责人:刘洋', 'type': 'Text', 'relation': 'part_of', 'parent_id': 58, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [2162.205810546875, 2629.960205078125, 2602.310791015625, 2681.9345703125], 'page_number': 7, 'layout_width': 2979, 'layout_height': 4220}], 'children': []}]}, {'id': 66, 'text': '2、合并利润表', 'type': 'Title', 'relation': 'part_of', 'parent_id': 57, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [318.5924377441406, 2760.88525390625, 659.7994384765625, 2826.231201171875], 'page_number': 7, 'layout_width': 2979, 'layout_height': 4220}], 'children': [{'id': 67, 'text': '单位:元', 'type': 'Text', 'relation': 'part_of', 'parent_id': 66, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [2429.1123046875, 2897.859375, 2613.3759765625, 2952.452880859375], 'page_number': 7, 'layout_width': 2979, 'layout_height': 4220}], 'children': []}, {'id': 68, 'text': '项目\\n 本期发生额\\n 上期发生额\\n\\n、营业总收入\\n 262,995,118.29\\n 259,047,714.77\\n\\n其中:营业收入\\n 262,995,118.29\\n 259,047,714.77\\n\\n利息收入\\n 已赚保费\\n\\n手续费及佣金收入\\n\\n营业总成本\\n 250,169,886.00\\n 248,873,091.49\\n\\n其中:营业成本\\n 201,333,386.91\\n 206,609,450.42\\n\\n利息支出\\n\\n手续费及佣金支出\\n\\n退保金\\n\\n赔付支出净额提取保险责任准备金净额\\n\\n保单红利支出\\n\\n分保费用\\n 税金及附加\\n 1,990,804.83\\n 1,353.377.73\\n\\n销售费用\\n 12,995,238.17\\n 13,924,207.98\\n\\n管理费用\\n 12,220,781.93\\n 8,319,216.64\\n\\n研发费用\\n 18,850,542.93\\n 15,421,964.96\\n\\n财务费用\\n 2,779,131.23\\n 3,244,873.76\\n\\n其中:利息费用\\n 3,979,831.52\\n 3,053,913.09\\n\\n利息收入\\n 731,421.23\\n 250,860.62\\n\\n加:其他收益\\n 3,675,556.17\\n 1,735,321.57\\n\\n投资收益(损失以“一”号填\\n\\n70,088.75\\n 99,638.58\\n\\n列)\\n\\n其中:对联营企业和合营\\n\\n70,088.75\\n 6,590.95\\n\\n企业的投资收益\\n\\n以摊余成本计量的\\n\\n金融资产终止确认收益\\n\\n汇兑收益(损失以“\"号填列)\\n 净散口套期收益(损失以“一”\\n\\n号填列)\\n\\n公允价值变动收益(损失以\\n\\n号填列)\\n\\n信用减值损失(损失以“”号填\\n\\n-5,955,396.40\\n 4,746,157.74\\n\\n列)\\n\\n资产减值损失(损失以\"\"号填\\n\\n-2,467,488.74\\n -2,003,499.20\\n\\n列)\\n\\n资产处置收益(损失以“\"号填\\n\\n140,939.71\\n\\n列)\\n\\n三、营业利润(亏损以“-”号填列)\\n 8,147,992.07\\n 5,400,866.20\\n\\n加:营业外收入\\n 51,028.40\\n 1,097.66\\n\\n减:营业外支出\\n 8,445.17\\n 978,000.71\\n\\n四、利润总额(亏损总额以“一”号填\\n 8,190,575.30\\n 4,423,963.15\\n\\n列)\\n\\n减:所得税费用\\n 2,461,205.83\\n 384,346.03\\n\\n五、净利润(净亏损以“一\"号填列)\\n 5,729,369.47\\n 4,039,617.12\\n\\n(一)按经营持续性分类\\n\\n1.持续经营净利润(净亏损以“一”\\n\\n5,729,369.47\\n 4,039,617.12\\n\\n号填列)\\n\\n2.终止经营净利润(净亏损以“一\\n\\n号填列)\\n\\n(二)按所有权归属分类\\n\\n1.归属于母公司所有者的净利润\\n 5,898,082.48\\n 4,236,096.83\\n\\n2.少数股东损益\\n -168,713.01\\n -196,479.71\\n\\n六、其他综合收益的税后净额\\n 325,546.31\\n -12,514.02\\n\\n归属母公司所有者的其他综合收益\\n 276,714.36\\n -10,636.92\\n\\n的税后净额\\n\\n(一)不能重分类进损益的其他\\n\\n综合收益\\n\\n1.重新计量设定受益计划变动\\n\\n额\\n\\n2.权益法下不能转损益的其他\\n\\n综合收益', 'type': 'Table', 'caption': ['单位:元'], 'relation': 'part_of', 'parent_id': 66, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [289.598388671875, 2960.07666015625, 2629.03662109375, 3795.6572265625], 'page_number': 7, 'layout_width': 2979, 'layout_height': 4220}, {'system': 'PixelSpace', 'coordinates': [286.85009765625, 403.71783447265625, 2609.180908203125, 3822.45703125], 'page_number': 8, 'layout_width': 2979, 'layout_height': 4217}], 'children': []}, {'id': 69, 'note': ['本期发生同控制下企业合并的,被合并方在合并前实现的净利润为:元,上期被合并方实现的净利润为:元。\\n法定代表人:戴军 主管会计工作负责人:杨雪莉 会计机构负责人:刘洋'], 'text': '3.其他权益工具投资公允价值\\n\\n变动\\n\\n4.企业自身信用风险公允价值\\n\\n变动\\n\\n5.其他\\n\\n(二)将重分类进损益的其他综\\n\\n276,714.36\\n -10,636.92\\n\\n合收益\\n\\n1.权益法下可转损益的其他综\\n\\n合收益\\n\\n2.其他债权投资公允价值变动\\n 3.金融资产重分类计入其他综\\n\\n合收益的金额\\n\\n4.其他债权投资信用减值准备\\n\\n5.现金流量套期储备\\n\\n6.外币财务报表折算差额\\n 276,714.36\\n -10,636.92\\n\\n7.其他\\n\\n归属于少数股东的其他综合收益的\\n 48,831.95\\n -1,877.10\\n\\n税后净额\\n\\n七、综合收益总额\\n 6,054,915.78\\n 4,027,103.10\\n\\n归属于母公司所有者的综合收益总\\n\\n6,174,796.84\\n 4,225,459.91\\n\\n额\\n\\n归属于少数股东的综合收益总额\\n -119,881.06\\n -198,356.81\\n\\n八、每股收益:\\n\\n(一)基本每股收益\\n 0.05\\n 0.04\\n\\n(二)稀释每股收益\\n 0.05\\n 0.04', 'type': 'Table', 'relation': 'part_of', 'parent_id': 66, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [295.8466491699219, 429.3774108886719, 2637.61767578125, 1910.77734375], 'page_number': 9, 'layout_width': 2981, 'layout_height': 4224}], 'children': []}, {'id': 70, 'text': '本期发生同控制下企业合并的,被合并方在合并前实现的净利润为:元,上期被合并方实现的净利润为:元。\\n法定代表人:戴军 主管会计工作负责人:杨雪莉 会计机构负责人:刘洋', 'type': 'Text', 'relation': 'part_of', 'parent_id': 66, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [313.52593994140625, 1910.2626953125, 2611.84033203125, 2025.946044921875], 'page_number': 9, 'layout_width': 2981, 'layout_height': 4224}], 'children': []}]}, {'id': 71, 'text': '3、合并现金流量表', 'type': 'Title', 'relation': 'part_of', 'parent_id': 57, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [320.1487731933594, 2100.1982421875, 763.05224609375, 2166.35009765625], 'page_number': 9, 'layout_width': 2981, 'layout_height': 4224}], 'children': [{'id': 72, 'text': '单位:元', 'type': 'Text', 'relation': 'part_of', 'parent_id': 71, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [2429, 2216, 2623, 2294], 'page_number': 9, 'layout_width': 2981, 'layout_height': 4224}], 'children': []}, {'id': 73, 'text': '项目\\n 本期发生额\\n 上期发生额\\n\\n、经营活动产生的现金流量:\\n\\n销售商品、提供劳务收到的现金\\n 131,754,467.94\\n 124,999,700.04\\n\\n客户存款和同业存放款项净增加额\\n\\n向中央银行借款净增加额\\n\\n向其他金融机构拆入资金净增加额\\n 收到原保险合同保费取得的现金\\n\\n收到再保业务现金净额\\n\\n保户储金及投资款净增加额\\n\\n收取利息、手续费及佣金的现金\\n\\n拆入资金净增加额\\n\\n回购业务资金净增加额\\n\\n代理买卖证券收到的现金净额\\n\\n收到的税费返还\\n 18,595,317.11\\n 4,780,716.66\\n\\n收到其他与经营活动有关的现金\\n 5,242,974.80\\n 2,374,962.82\\n\\n经营活动现金流入小计\\n 155,592,759.85\\n 132,155,379.52\\n\\n购买商品、接受劳务支付的现金\\n 206,294,819.38\\n 96,831,173.14\\n\\n客户贷款及垫款净增加额\\n\\n存放中央银行和同业款项净增加额\\n 支付原保险合同赔付款项的现金\\n\\n拆出资金净增加额', 'type': 'Table', 'caption': ['单位:元'], 'relation': 'part_of', 'parent_id': 71, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [292.4276123046875, 2311.830322265625, 2635.252197265625, 3787.711181640625], 'page_number': 9, 'layout_width': 2981, 'layout_height': 4224}], 'children': []}, {'id': 74, 'note': ['(二)2024年起首次执行新会计准则调整首次执行当年年初财务报表相关项目情况'], 'text': '支付利息、手续费及佣金的现金\\n\\n支付保单红利的现金\\n\\n支付给职工以及为职工支付的现金\\n 54,183,333.71\\n 47,242,498.43\\n\\n支付的各项税费\\n 3,860,476.40\\n 7,777,423.81\\n\\n支付其他与经营活动有关的现金\\n 10,881,458.41\\n 7,067,747.72\\n\\n经营活动现金流出小计\\n 275,220,087.90\\n 158,918,843.10\\n\\n经营活动产生的现金流量净额\\n -119,627,328.05\\n -26,763,463.58\\n\\n二、投资活动产生的现金流量:\\n\\n收回投资收到的现金\\n\\n取得投资收益收到的现金\\n\\n处置固定资产、无形资产和其他长\\n 26,000.00\\n\\n期资产收回的现金净额\\n\\n处置子公司及其他营业单位收到的\\n\\n现金净额\\n\\n收到其他与投资活动有关的现金\\n 75,093,047.63\\n\\n投资活动现金流入小计\\n 26,000.00\\n 75,093,047.63\\n\\n购建固定资产、无形资产和其他长\\n 9,634,339.75\\n 5,475,121.28\\n\\n期资产支付的现金\\n 投资支付的现金\\n 质押贷款净增加额\\n\\n取得子公司及其他营业单位支付的\\n\\n现金净额\\n\\n支付其他与投资活动有关的现金\\n 10,040,000.00\\n 54,961,600.00\\n\\n投资活动现金流出小计\\n 19,674,339.75\\n 60,436,721.28\\n\\n投资活动产生的现金流量净额\\n -19,648,339.75\\n 14,656,326.35\\n\\n三、筹资活动产生的现金流量:\\n\\n吸收投资收到的现金\\n\\n其中:子公司吸收少数股东投资\\n\\n收到的现金\\n\\n取得借款收到的现金\\n 273,000,000.00\\n 125,024,000.00\\n\\n收到其他与筹资活动有关的现金\\n\\n筹资活动现金流入小计\\n 273,000,000.00\\n 125,024,000.00\\n\\n偿还债务支付的现金\\n 99,600,000.00\\n 140,000,000.00\\n\\n分配股利、利润或偿付利息支付的\\n\\n3,797,421.32\\n 3,522,363.85\\n\\n现金\\n\\n其中:子公司支付给少数股东的\\n\\n股利、利润\\n\\n支付其他与筹资活动有关的现金\\n\\n筹资活动现金流出小计\\n 103,397,421.32\\n 143,522,363.85\\n\\n筹资活动产生的现金流量净额\\n 169,602,578.68\\n -18,498,363.85\\n\\n四、汇率变动对现金及现金等价物的\\n\\n-112,476.19\\n -120,896.88\\n\\n影响\\n\\n五、现金及现金等价物净增加额\\n 30,214,434.69\\n -30,726,397.96\\n\\n加:期初现金及现金等价物余额\\n 215,117,710.19\\n 177,644,730.91\\n\\n六、期末现金及现金等价物余额\\n 245,332,144.88\\n 146,918,332.95', 'type': 'Table', 'relation': 'part_of', 'parent_id': 71, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [288.0625305175781, 410.9174499511719, 2612.0048828125, 3178.782470703125], 'page_number': 10, 'layout_width': 2979, 'layout_height': 4218}], 'children': []}]}]}, {'id': 75, 'text': '(二)2024年起首次执行新会计准则调整首次执行当年年初财务报表相关项目情况', 'type': 'Title', 'relation': 'part_of', 'parent_id': 56, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [337, 3238, 2518, 3304], 'page_number': 10, 'layout_width': 2979, 'layout_height': 4218}], 'children': [{'id': 76, 'text': '口适用不适用', 'type': 'Text', 'relation': 'part_of', 'parent_id': 75, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [311.0133361816406, 3383.4267578125, 612.6719970703125, 3439.12060546875], 'page_number': 10, 'layout_width': 2979, 'layout_height': 4218}], 'children': []}]}, {'id': 77, 'text': '(三)审计报告', 'type': 'Title', 'relation': 'part_of', 'parent_id': 56, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [341.2596435546875, 3507.173583984375, 757.537109375, 3579.09765625], 'page_number': 10, 'layout_width': 2979, 'layout_height': 4218}], 'children': [{'id': 78, 'text': '第·季度报告是否经过审计\\n口是否', 'type': 'Text', 'relation': 'part_of', 'parent_id': 77, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [305.1357116699219, 3651.362060546875, 840.8886108398438, 3776.461669921875], 'page_number': 10, 'layout_width': 2979, 'layout_height': 4218}], 'children': []}, {'id': 79, 'text': '公司第一季度报告未经审计。', 'type': 'Text', 'relation': 'part_of', 'parent_id': 77, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [339.3265075683594, 434.359375, 2624.673583984375, 830.8414916992188], 'page_number': 11, 'layout_width': 2981, 'layout_height': 4222}], 'children': []}]}, {'id': 80, 'text': '资产负债表', 'type': 'Title', 'relation': 'part_of', 'parent_id': 56, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [1011.0205688476562, 329.6085205078125, 1643.4539794921875, 419.4570007324219], 'page_number': 12, 'layout_width': 2976, 'layout_height': 4220}], 'children': [{'id': 81, 'text': '2024年3月31日', 'type': 'Text', 'relation': 'part_of', 'parent_id': 80, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [1216.9510498046875, 474.3560791015625, 1435.158935546875, 517.4952392578125], 'page_number': 12, 'layout_width': 2976, 'layout_height': 4220}], 'children': []}, {'id': 82, 'text': '编制单位:罗博特科智能科技股份有限公司', 'type': 'Text', 'relation': 'part_of', 'parent_id': 80, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [283, 571, 895, 633], 'page_number': 12, 'layout_width': 2976, 'layout_height': 4220}], 'children': []}, {'id': 83, 'text': '会企01表', 'type': 'Text', 'relation': 'part_of', 'parent_id': 80, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [2154.537841796875, 522.1858520507812, 2376.259033203125, 614.6788330078125], 'page_number': 12, 'layout_width': 2976, 'layout_height': 4220}], 'children': []}, {'id': 84, 'note': ['法定代表人:', '主管会计工作的负责人:'], 'text': '资产\\n 期末数\\n 上年年末数\\n 负债和所有者权益\\n 期末数\\n 上年年末数\\n\\n流动资产:\\n 流动负债:\\n\\n货币资金\\n 194, 390, 880. 64\\n 130, 946,017.53\\n 短期借款\\n 767,056, 725.17\\n 541, 557, 068.73\\n\\n交易性金融资产\\n 交易性金融负债\\n\\n衍生金融资产\\n 衍生金融负债\\n\\n应收票据\\n 应付票据\\n 79, 882, 961. 26\\n 103, 110, 128. 20\\n\\n应收账款\\n 263, 834,023.89\\n 227,990, 523.18\\n 应付账款\\n 414,835, 202.57\\n 394, 523, 341. 03\\n\\n应收款项融资\\n 19, 091, 152.51\\n 56,495,082.83\\n 预收款项\\n\\n预付款项\\n 61, 424, 979. 50\\n 57,824, 915.98\\n 合同负债\\n 144,019, 143.32\\n\\n其他应收款\\n 35, 337, 515. 71\\n 23,730,009.86\\n 应付职工薪酬\\n 770,394.70\\n\\n存货\\n 437,859, 191.30\\n 331, 280, 418. 70\\n 应交税费\\n H8, 141.67\\n\\n合同资产\\n 501,033,974.01\\n 523,348,348.92\\n 其他应付款\\n 一\\n 5,250.74\\n\\n持有待售资产\\n 持有待售负债\\n\\n一年内到期的非流动\\n 年内到期的非流\\n 016, 319.44\\n\\n其他流动资产\\n 4, 928, 921.91\\n 13, 062, 364. 74\\n 其他流动负债\\n 15, 023, 680.26\\n\\n流动资产合计\\n 1, 517, 900,639.47\\n 1,364,677, 681. 74\\n 流动负债合计\\n 1, 454, 1101.\\n 1, 293, 113, 468.09\\n\\n非流动负债:\\n 长期借款\\n 20, 011, 933. 26\\n 20, 022, 622.57\\n\\n应付债券\\n\\n其中:优先股\\n 永续债\\n\\n赁负债\\n\\n非流动资产:\\n 债权投资\\n\\n其他债权投资\\n 预计\\n\\n长期应收款\\n 2059\\n 6\\n\\n长期股权投资\\n 608, 685, 855.51\\n 25,766.76\\n\\n其他权益工具投资\\n 其他业\\n\\n其他非流动金融资产\\n 30,000,000.00\\n 30, 000, 000. 00\\n 非流动负债合计\\n 20, 011,933. 26\\n 20, 022,622.57\\n\\n投资性房地产\\n 负债合计\\n 1, 474, 151, 034. 73\\n 1, 313, 136, 090. 66\\n\\n固定资产\\n 18, 306,829.66\\n 19, 802, 944.87\\n 所有者权益(或股东权益):\\n\\n在建工程\\n 25, 681, 671. 61\\n 21, 628, 540. 18\\n 实收资本(或股本)\\n 110, 388, 986.00\\n 110,388, 986.00\\n\\n生产性生物资产\\n 其他权益工具\\n\\n油气资产\\n 其中:优先股\\n\\n使用权资产\\n 712,742.21\\n 753,086.12\\n 永续债\\n\\n无形资产\\n 11, 984, 646. 22\\n 12, 178, 665.80\\n 资本公积\\n 570,329,435. 52\\n 566, 903, 571.74\\n\\n开发支出\\n 减:库存股\\n 3,265,691. 50\\n 3, 265,691.50\\n\\n商誉\\n 其他综合收益\\n\\n长期待摊费用\\n 专项储备\\n\\n递延所得税资产\\n 31, 508, 267.64\\n 29, 895, 945. 55\\n 盈余公积\\n 43,980, 130.86\\n 43, 980, 130.86\\n\\n其他非流动资产\\n 199, 918, 994.21\\n 198, 277, 650.96\\n 未分配利润\\n 249, 115,750.92\\n 251,687, 194.22\\n\\n非流动资产合计\\n 926,799,007.06\\n 918, 152, 600. 24\\n 所有者权益合计\\n 970, 548, 611. 80\\n 969,694, 191.32\\n\\n资产总计\\n 2, 444, 699,646.53\\n 2, 282, 830, 281.98\\n 负债和所有者权益总计\\n 2, 444, 699, 646. 53\\n 2,', 'type': 'Table', 'relation': 'part_of', 'parent_id': 80, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [270.91009521484375, 600.4942016601562, 2376.44189453125, 3738.947021484375], 'page_number': 12, 'layout_width': 2976, 'layout_height': 4220}], 'children': []}, {'id': 85, 'text': '法定代表人:', 'type': 'Text', 'relation': 'part_of', 'parent_id': 80, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [289.2467346191406, 3749.935302734375, 469.2995910644531, 3795.1474609375], 'page_number': 12, 'layout_width': 2976, 'layout_height': 4220}], 'children': []}, {'id': 86, 'text': '主管会计工作的负责人:', 'type': 'Text', 'relation': 'part_of', 'parent_id': 80, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [1005, 3750, 1337, 3794], 'page_number': 12, 'layout_width': 2976, 'layout_height': 4220}], 'children': []}, {'id': 87, 'text': '会计机负山点 编制单位:罗博特科智能科技股份有限公司', 'type': 'Text', 'relation': 'part_of', 'parent_id': 80, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [1749, 3754, 1957, 3785], 'page_number': 12, 'layout_width': 2976, 'layout_height': 4220}, {'system': 'PixelSpace', 'coordinates': [283.9979248046875, 516.6967163085938, 1102.4122314453125, 569.386962890625], 'page_number': 13, 'layout_width': 2976, 'layout_height': 4232}], 'children': []}, {'id': 88, 'text': '去定代表人:主管会计工作的负责人:会计机构负责', 'type': 'Text', 'relation': 'part_of', 'parent_id': 80, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [281.23419189453125, 3276.935791015625, 1272.7584228515625, 3333.46142578125], 'page_number': 13, 'layout_width': 2976, 'layout_height': 4232}], 'children': []}, {'id': 89, 'text': '会企02表', 'type': 'Text', 'relation': 'part_of', 'parent_id': 80, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [2413.74609375, 472.7807922363281, 2727.06005859375, 581.3494262695312], 'page_number': 13, 'layout_width': 2976, 'layout_height': 4232}], 'children': []}, {'id': 90, 'text': '项目\\n 注释号\\n 本期数\\n 上年同期数\\n\\n一、营业收入\\n 168, 963, 233. 43\\n\\n减:营业成本\\n 129, 217, 152.69\\n\\n税金及附加\\n 1, 083, 631. 91\\n\\n销售费用\\n 10, 183,727.42\\n\\n管理费用\\n 9, 554, 809.02\\n\\n研发费用\\n 15, 004, 951. 00\\n\\n财务费用\\n 2,546, 051.21\\n\\n其中:利息费用\\n 3,979,831.52\\n\\n利息收入\\n 405,811.55\\n\\n加:其他收益\\n 3,576,367.71\\n\\n投资收益(损失以“-”号填列)\\n 70,088.75\\n\\n其中:对联营企业和合营企业的投资收益\\n\\n以摊余成本计量的金融资产终止确认收益\\n\\n净散口套期收益(损失以“-”号填列)\\n 公允价值变动收益(损失以“-”号填列)\\n\\n信用减值损失(损失以“”号填列)\\n -5,132,599.50\\n\\n资产减值损失(损失以“-”号填列)\\n -2, 460, 965.27\\n\\n资产处置收益(损失以“-”号填列)\\n\\n二、营业利润(亏损以“-”号填列)\\n -2,574,198.13\\n\\n加:营业外收入\\n 11, 200.00\\n\\n减:营业外支出\\n 8,445.17\\n\\n三、利润总额(亏损总额以“-”号填列)\\n -2,571,443.30\\n\\n减:所得税费用\\n\\n四、净利润(净亏损以“”号填列)\\n -2,571,443.30\\n\\n(一)持续经营净利润(净亏损以“”号填列)\\n\\n特科\\n\\n-2, 571, 443. 30\\n\\n(二)终止经营净利润(净亏损以“-”号填列)\\n\\n五、其他综合收益的税后净额\\n\\n(一)不能重分类进损益的其他综合收益\\n 1.重新计量设定受益计划变动额\\n\\n2.权益法下不能转损益的其他综合收益\\n\\n3.其他权益工具投资公允价值变动\\n 4.企业自身信用风险公允价值变动\\n 95\\n\\n5.其他\\n\\n(二)将重分类进损益的其他综合收益\\n\\n1.权益法下可转损益的其他综合收益\\n\\n2.其他债权投资公允价值变动\\n\\n3.金融资产重分类计入其他综合收益的金额\\n\\n4.其他债权投资信用减值准备\\n\\n5.现金流量套期储备\\n\\n6.外币财务报表折算差额\\n\\n7.其他\\n 六、综合收益总额\\n -2,571, 443.30\\n\\n七、每股收益:\\n\\n(一)基本每股收益\\n (二)稀释每股收益', 'type': 'Table', 'caption': ['会企02表'], 'relation': 'part_of', 'parent_id': 80, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [255.1645965576172, 549.5132446289062, 2727.732421875, 3292.30078125], 'page_number': 13, 'layout_width': 2976, 'layout_height': 4232}], 'children': []}]}, {'id': 91, 'text': '现金流量表', 'type': 'Title', 'relation': 'part_of', 'parent_id': 56, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [1103.24462890625, 279.7678527832031, 1692.8310546875, 380.0404357910156], 'page_number': 14, 'layout_width': 2976, 'layout_height': 4224}], 'children': [{'id': 92, 'text': '2024年度1-3月', 'type': 'Text', 'relation': 'part_of', 'parent_id': 91, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [1203.7623291015625, 388.5892639160156, 1540.7171630859375, 447.4249572753906], 'page_number': 14, 'layout_width': 2976, 'layout_height': 4224}], 'children': []}, {'id': 93, 'text': '法定代表人:', 'type': 'Text', 'relation': 'part_of', 'parent_id': 91, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [265.2300109863281, 3258.275634765625, 541.8499755859375, 3319.33203125], 'page_number': 14, 'layout_width': 2976, 'layout_height': 4224}], 'children': []}, {'id': 94, 'text': '会企03表 单位:人民币元', 'type': 'Text', 'relation': 'part_of', 'parent_id': 91, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [2114.848876953125, 459.711669921875, 2481.432373046875, 587.0361938476562], 'page_number': 14, 'layout_width': 2976, 'layout_height': 4224}], 'children': []}, {'id': 95, 'note': ['法定代表人:'], 'text': '项目\\n 本期数\\n 上年同期数\\n\\n、经营活动产生的现金流量:\\n\\n销售商品、提供劳务收到的现金\\n 111, 139,935.73\\n\\n收到的税费返还\\n 18, 595, 317. 11\\n\\n收到其他与经营活动有关的现金\\n 2, 143, 439. 48\\n\\n经营活动现金流入小计\\n 131, 878, 692. 32\\n\\n购买商品、接受劳务支付的现金\\n 177, 551, 148.88\\n\\n支付给职工以及为职工支付的现金\\n 40, 616, 904. 94\\n\\n支付的各项税费\\n 563, 916. 56\\n\\n支付其他与经营活动有关的现金\\n 8,568, 521.93\\n\\n经营活动现金流出小计\\n 227, 300, 492. 31\\n\\n经营活动产生的现金流量净额\\n -95, 421, 799.99\\n\\n收回投资收到的现金\\n\\n取得投资收益收到的现金\\n\\n处置固定资产、无形资产和其他长期资产收回的现金净额\\n\\n处置子公司及其他营业单位收到的现金净额\\n\\n收到其他与投资活动有关的现金\\n 265, 040, 000. 00\\n\\n投资活动现金流入小计\\n 265, 040, 000. 00\\n\\n购建固定资产、无形资产和其他长期资产支付的现金\\n 4, 691, 256. 68\\n\\n投资支付的现金\\n 3, 000, 000. 00\\n\\n取得子公司及其他营业单位支付的现金净额\\n\\n支付其他与投资活动有关的现金\\n 256, 812, 514. 66\\n\\n投资活动现金流出小计\\n 264, 503, 771. 34\\n\\n投资活动产生的现金流量净额\\n 536, 228.66\\n\\n三、筹资活动产生的现金流量:\\n\\n吸收投资收到的现金\\n\\n日北\\n\\n取得借款收到的现金\\n 5,000,aoo.\\n\\n收到其他与筹资活动有关的现金\\n 0,000.00\\n\\n筹资活动现金流入小计\\n 00. 000.00\\n\\n偿还债务支付的现金\\n 99,00,000o\\n\\n分配股利、利润或偿付利息支付的现金\\n 3,797,21\\n\\n支付其他与筹资活动有关的现金\\n 8000795\\n\\n筹资活动现金流出小计\\n 100,391,121.32\\n\\n筹资活动产生的现金流量净额\\n 159, 602, 578.68\\n\\n四、汇率变动对现金及现金等价物的影响\\n 272, 076.85\\n\\n五、现金及现金等价物净增加额\\n 64, 717, 007. 35\\n\\n加:期初现金及现金等价物余额\\n 114, 128, 460.89\\n\\n六、期末现金及现金等价物余额\\n 178, 845, 468. 24\\n\\n法定代表人:\\n 主管会计工作的负责人:', 'type': 'Table', 'relation': 'part_of', 'parent_id': 91, 'composing_blocks': [{'system': 'PixelSpace', 'coordinates': [255.61831665039065, 487.3421630859375, 2330.6240234375, 3300.182373046875], 'page_number': 14, 'layout_width': 2976, 'layout_height': 4224}], 'children': []}]}]}]}]\n" 184 | ] 185 | } 186 | ], 187 | "source": [ 188 | "tree = build_tree(json_data.get(\"data\", {}).get(\"task_result\", {}).get(\"nodes\", []))\n", 189 | "print(tree)" 190 | ] 191 | }, 192 | { 193 | "cell_type": "markdown", 194 | "metadata": {}, 195 | "source": [ 196 | "### Convert the Tree Structure into Markdown Format" 197 | ] 198 | }, 199 | { 200 | "cell_type": "code", 201 | "execution_count": 40, 202 | "metadata": {}, 203 | "outputs": [ 204 | { 205 | "name": "stdout", 206 | "output_type": "stream", 207 | "text": [ 208 | "\n", 209 | "证券代码:300757 证券简称:罗博特科 公告编号:2024-036\n", 210 | "\n", 211 | "# 罗博特科智能科技股份有限公司\n", 212 | "2024年第一季度报告\n", 213 | "\n", 214 | "本公司及董事会全体成员保证信息披露的内容真实、准确、完整,没有虚假记载、误\n", 215 | "导性陈述或重大遗漏\n", 216 | "\n", 217 | "## 重要内容提示:\n", 218 | "\n", 219 | "1.董事会、监事会及董事、监事、高级管理人员保证季度报告的真实、准确、完整,不存\n", 220 | "在虚假记载、误导性陈述或重大遗漏,并承担个别和连带的法律责任。\n", 221 | "\n", 222 | "2.公司负责人、主管会计工作负责人及会计机构负责人(会计主管人员)声明:保证季度报\n", 223 | "告中财务信息的真实、准确、完整。\n", 224 | "\n", 225 | "3.第一季度报告是否经过审计\n", 226 | "\n", 227 | "口是否\n", 228 | "\n", 229 | "## 一、主要财务数据\n", 230 | "\n", 231 | "### (一)主要会计数据和财务指标\n", 232 | "\n", 233 | "公司是否需追溯调整或重述以前年度会计数据\n", 234 | "\n", 235 | "口是否\n", 236 | "\n", 237 | "\n", 238 | "```figure\n", 239 | "这张图片显示的是一份财务报告,其中包含了营业收入、归属于上市公司股东的净利润、归属于上市公司股东的扣除非经常性损益后的净利润等各项财务指标的数据对比。具体数据如下:\n", 240 | "\n", 241 | "- 本报告期营业收入为2,029,838,490元,比上年同期增长1.52%。\n", 242 | "- 本报告期归属于上市公司股东的净利润为5,898,882,467元,比上年同期增长39.23%。\n", 243 | "- 本报告期归属于上市公司股东的扣除非经常性损益后的净利润为5,708,214,767元,比上年同期增长30.12%。\n", 244 | "- 本报告期经营活动产生的现金流量净额为-26,763,463,58元,比上年同期减少346.98%。\n", 245 | "\n", 246 | "此外,报告还列出了基本每股收益、稀释每股收益和加权平均净资产收益率等财务指标的数据对比。这些数据表明公司在过去的一段时间内取得了显著的增长,但也需要注意经营活动现金流量净额的大幅下降。\n", 247 | "```\n", 248 | "\n", 249 | "\n", 250 | "### (二)非经常性损益项目和金额\n", 251 | "\n", 252 | "适用口不适用\n", 253 | "\n", 254 | "单位:元\n", 255 | "\n", 256 | "\n", 257 | "```table\n", 258 | "项目\n", 259 | " 本报告期金额\n", 260 | " 说明\n", 261 | "\n", 262 | "非流动性资产处置损益(包括已计提\n", 263 | "\n", 264 | "26,418.39\n", 265 | "\n", 266 | "资产减值准备的冲销部分)\n", 267 | "\n", 268 | "计入当期损益的政府补助(与公司正\n", 269 | " 常经营业务密切相关、符合国家政策\n", 270 | "\n", 271 | "176,228.26\n", 272 | "\n", 273 | "规定、按照确定的标准享有、对公司\n", 274 | " 损益产生持续影响的政府补助除外)\n", 275 | " 除上述各项之外的其他营业外收入和\n", 276 | "\n", 277 | "33,055.18\n", 278 | "\n", 279 | "支出\n", 280 | "\n", 281 | "减:所得税影响额\n", 282 | " 45,597.02\n", 283 | "\n", 284 | "少数股东权益影响额(税后)\n", 285 | " 257.09\n", 286 | "\n", 287 | "合计\n", 288 | " 189,847.72\n", 289 | "```\n", 290 | "\n", 291 | "\n", 292 | "其他符合非经常性损益定义的损益项目的具体情况\n", 293 | "\n", 294 | "口适用不适用\n", 295 | "\n", 296 | "公司不存在其他符合非经常性损益定义的损益项目的具体情况。\n", 297 | "\n", 298 | "将《公开发行证券的公司信息披露解释性公告第1号——非经常性损益》中列举的非经常性损益项日界定为经常性损益\n", 299 | "项口的情况说明\n", 300 | "\n", 301 | "口适用不适用\n", 302 | "\n", 303 | "将《公开发行证券的公司信息披露解释性公告第1号一非经常性损益》中列举的非经常性损益项目界久\n", 304 | "的项目的情形。\n", 305 | "\n", 306 | "### (三)主要会计数据和财务指标发生变动的情况及原因\n", 307 | "\n", 308 | "适用口不适用\n", 309 | "\n", 310 | "1、资产负债表项目重大变动情况\n", 311 | "\n", 312 | "单位:元\n", 313 | "\n", 314 | "\n", 315 | "```table\n", 316 | "资产负债表项目\n", 317 | " 本报告期末\n", 318 | " 上年度末\n", 319 | " 增减幅度\n", 320 | " 原因分析\n", 321 | "\n", 322 | "主要系本期末持有的结\n", 323 | "\n", 324 | "交易性金融资产\n", 325 | " 10,000,000.00\n", 326 | " 100.00%\n", 327 | "\n", 328 | "构性存款增加所致\n", 329 | "\n", 330 | "主要系本期末增值税留\n", 331 | " 其他流动资产\n", 332 | " 8,614,782.41\n", 333 | " 19,196,956.51\n", 334 | " -55.12%\n", 335 | "\n", 336 | "抵税额减少所致\n", 337 | "\n", 338 | "主要系公司支付部分到\n", 339 | "\n", 340 | "应付票据\n", 341 | " 79,882,961.26\n", 342 | " 117,003,716.55\n", 343 | " -31.73%期银行承兑汇票使余额\n", 344 | "\n", 345 | "减少所致\n", 346 | "\n", 347 | "主要系本期发放上期末\n", 348 | "\n", 349 | "应付职工薪酬\n", 350 | " 9,569,235.08\n", 351 | " 25,512,136.67\n", 352 | " -62.49%计提的奖金使得余额减\n", 353 | "\n", 354 | "少所致\n", 355 | "\n", 356 | "主要系公司盈利能力提\n", 357 | "\n", 358 | "应交税费\n", 359 | " 5,926,806.75\n", 360 | " 4,387,630.71\n", 361 | " 35.08%升、期末应交所得税余\n", 362 | "\n", 363 | "额上升所致\n", 364 | "```\n", 365 | "\n", 366 | "\n", 367 | "2、利润表项目重大变动情况\n", 368 | "\n", 369 | "\n", 370 | "```table\n", 371 | "利润表项目\n", 372 | " 本期数\n", 373 | " 上年同期数\n", 374 | " 增减幅度\n", 375 | " 原因分析\n", 376 | "\n", 377 | "主要系本期缴纳增值税\n", 378 | "\n", 379 | "税金及附加\n", 380 | " 1,990,804.83\n", 381 | " 1,353,377.73\n", 382 | " 47.10%增加使得城建、教育费\n", 383 | "\n", 384 | "附加上升所致\n", 385 | "\n", 386 | "主要系本期计提股份支\n", 387 | "\n", 388 | "管理费用\n", 389 | " 12,220,781.93\n", 390 | " 8.319,216.64\n", 391 | " 46.90%付费用及资产重组中介\n", 392 | "\n", 393 | "费用上升所致\n", 394 | "\n", 395 | "主要系本期增值税加计\n", 396 | "\n", 397 | "其他收益\n", 398 | " 3,675,556.17\n", 399 | " 1,735,321.57\n", 400 | " 111.81%\n", 401 | "\n", 402 | "抵减增加所致\n", 403 | "\n", 404 | "主要系公司盈利能力提\n", 405 | "\n", 406 | "所得税费用\n", 407 | " 2,461,205.83\n", 408 | " 384.346.03\n", 409 | " 540.36%高、所得税费用上升所\n", 410 | "\n", 411 | "致\n", 412 | "```\n", 413 | "\n", 414 | "\n", 415 | "3、现金流量表项目重大变动情况\n", 416 | "\n", 417 | "单位:元\n", 418 | "\n", 419 | "\n", 420 | "```table\n", 421 | "现金流量表项目\n", 422 | " 本期数\n", 423 | " 上年同期数\n", 424 | " 增减幅度\n", 425 | " 原因分析\n", 426 | "\n", 427 | "主要系本期支付较多供\n", 428 | "\n", 429 | "经营活动产生的现金流\n", 430 | " -119,627,328.05\n", 431 | " -26,763,463.58\n", 432 | " -346.98%应商款项使经营活动现\n", 433 | "\n", 434 | "量净额\n", 435 | " 金净流出增加所致\n", 436 | "\n", 437 | "主要系本期未有到期理\n", 438 | "\n", 439 | "投资活动产生的现金流\n", 440 | "\n", 441 | "-19,648,339.75\n", 442 | " 14,656,326.35\n", 443 | " -234.06%财产品收回使投资现金\n", 444 | "\n", 445 | "量净额\n", 446 | " 流入减少所致\n", 447 | "\n", 448 | "主要系本期公司银行借\n", 449 | "\n", 450 | "筹资活动产生的现金流\n", 451 | " 169,602,578.68\n", 452 | " -18,498,363.85\n", 453 | " 1,016.85%款增加使筹资现金净流\n", 454 | "\n", 455 | "量净额\n", 456 | " 入增加所致\n", 457 | "```\n", 458 | "\n", 459 | "\n", 460 | "## 二、股东信息\n", 461 | "\n", 462 | "(一)普通股股东总数和表决权恢复的优先股股东数量及前十名股东持股情况表\n", 463 | "\n", 464 | "单位:股\n", 465 | "\n", 466 | "\n", 467 | "```table\n", 468 | "报告期末普通股股东总数\n", 469 | " 24.426报告期末表决权恢复的优先股股东总数(如有)\n", 470 | " 0\n", 471 | "\n", 472 | "前10名股东持股情况(不含通过转融通出借股份)\n", 473 | "\n", 474 | "持股比例\n", 475 | " 持有有限售条\n", 476 | " 质押、标记或冻结情况\n", 477 | "\n", 478 | "股东名称\n", 479 | " 股东性质\n", 480 | " 持股数量\n", 481 | "\n", 482 | "(%)\n", 483 | " 件的股份数量\n", 484 | " 股份状态\n", 485 | " 数量\n", 486 | "\n", 487 | "苏州元颜昇企\n", 488 | "\n", 489 | "境内非国有法\n", 490 | "\n", 491 | "业管理咨询有\n", 492 | " 25.66%\n", 493 | " 28,326,600.00\n", 494 | " 0.00质押\n", 495 | " 11,238,000.00\n", 496 | "\n", 497 | "人\n", 498 | "\n", 499 | "限公司\n", 500 | "\n", 501 | "宁波科骏企业\n", 502 | "\n", 503 | "境内非国有法\n", 504 | "\n", 505 | "管理咨询中心\n", 506 | " 6.92%\n", 507 | " 7,641,100.00\n", 508 | " 0.00\n", 509 | " 不适用\n", 510 | " 0.00\n", 511 | "\n", 512 | "人\n", 513 | "\n", 514 | "(有限合伙)\n", 515 | "\n", 516 | "夏承周\n", 517 | " 境内自然人\n", 518 | " 5.02%\n", 519 | " 5,546,200.00\n", 520 | " 0.00\n", 521 | " 不适用\n", 522 | " 0.00\n", 523 | "\n", 524 | "戴军\n", 525 | " 境内自然人\n", 526 | " 4.27%\n", 527 | " 4,709,577.00\n", 528 | " 4,709,577.00\n", 529 | " 质押\n", 530 | " 3,700,000.00\n", 531 | "\n", 532 | "李洁\n", 533 | " 境内自然人\n", 534 | " 4.00%\n", 535 | " 4,418,240.00\n", 536 | " 0.00\n", 537 | " 不适用\n", 538 | " 0.00\n", 539 | "\n", 540 | "土暨钟\n", 541 | " 境内自然人\n", 542 | " 1.71%\n", 543 | " 1.883.355.00\n", 544 | " 0.00\n", 545 | " 不适用\n", 546 | " 0.00\n", 547 | "\n", 548 | "上宏军\n", 549 | " 境内自然人\n", 550 | " 1.42%\n", 551 | " 1,569,859.00\n", 552 | " 1,569,859.00\n", 553 | " 不适用\n", 554 | " 0.00\n", 555 | "\n", 556 | "T墨\n", 557 | " 境内自然人\n", 558 | " 1.24%\n", 559 | " 1,366,500.00\n", 560 | " 0.00\n", 561 | " 不适用\n", 562 | " 0.00\n", 563 | "\n", 564 | "香港中央结算\n", 565 | "\n", 566 | "境外法人\n", 567 | " 0.91%\n", 568 | " 999,907.00\n", 569 | " 0.00\n", 570 | " 不适用\n", 571 | " 0.00\n", 572 | "\n", 573 | "有限公司\n", 574 | "\n", 575 | "基本养老保险\n", 576 | "\n", 577 | "其他\n", 578 | " 0.88%\n", 579 | " 974,000.00\n", 580 | " 0.00\n", 581 | " 不适用\n", 582 | " 0.00\n", 583 | "\n", 584 | "基金一二零三组合\n", 585 | "\n", 586 | "前10名无限售条件股东持股情况\n", 587 | "\n", 588 | "股份种类\n", 589 | "\n", 590 | "股东名称\n", 591 | " 持有无限售条件股份数量\n", 592 | " 股份种类\n", 593 | " 数量\n", 594 | "\n", 595 | "苏州元颌昇企业管理咨询有限公\n", 596 | "\n", 597 | "28,326,600.00\n", 598 | " 人民币普通股\n", 599 | " 28,326,600.00\n", 600 | "\n", 601 | "宁波科骏企业管理咨询中心(有\n", 602 | "\n", 603 | "7,641,100.00\n", 604 | " 人民币普通股\n", 605 | " 7,641,100.00\n", 606 | "\n", 607 | "限合伙)\n", 608 | " 夏承周\n", 609 | " 5,546,200.00\n", 610 | " 人民币普通股\n", 611 | " 5,546,200.00\n", 612 | "\n", 613 | "李洁\n", 614 | " 4,418,240.00\n", 615 | " 人民币普通股\n", 616 | " 4,418,240.00\n", 617 | "\n", 618 | "王暨钟\n", 619 | " 1,883,355.00\n", 620 | " 人民币普通股\n", 621 | " 1,883,355.00\n", 622 | "\n", 623 | "工墨\n", 624 | " 1,366,500.00\n", 625 | " 人民币普通股\n", 626 | " 1,366,500.00\n", 627 | "\n", 628 | "香港中央结算有限公司\n", 629 | " 999,907.00\n", 630 | " 人民币普通股\n", 631 | " 999,907.00\n", 632 | "\n", 633 | "基本养老保险基金·二零组合\n", 634 | " 974,000.00\n", 635 | " 人民币普通股\n", 636 | " 974,000.00\n", 637 | "\n", 638 | "中国建设银行股份有限公司一鹏\n", 639 | " 华沪深港新兴成长灵活配置混合\n", 640 | " 765,550.00\n", 641 | " 人民币普通股\n", 642 | " 765,550.00\n", 643 | "\n", 644 | "型证券投资基金\n", 645 | "\n", 646 | "张建成\n", 647 | " 750.000.00人民币普通股\n", 648 | " 750,000.00\n", 649 | "\n", 650 | "公司实际控制人戴车、控股股东苏州元颌昇企业管理咨询有限公\n", 651 | " 司、股东宁波科骏企业管理咨询中心(有限合伙)三位股东为一致行\n", 652 | "\n", 653 | "上述股东关联关系或一致行动的说明\n", 654 | " 动人。除此之外,未知公司上述股东之间是否存在关联关系,也未\n", 655 | " 知上述股东之问是否属于《上市公司收购管理办法》规定的一致行\n", 656 | "\n", 657 | "动人。\n", 658 | "\n", 659 | "股东王墨通过普通证券账户持有公司0股,通过国泰君安证券股份\n", 660 | "\n", 661 | "前10名股东参与融资融券业务股东情况说明(如\n", 662 | "\n", 663 | "有限公司客户信用交易担保证券账户持有公司1,366.500股,合计\n", 664 | " 有)\n", 665 | "\n", 666 | "1,366.500股。\n", 667 | "```\n", 668 | "\n", 669 | "\n", 670 | "持股5%以上股东、前10名股东及前10名无限售流通股股东参与转融通业务出借股份情况\n", 671 | "口适用不适用\n", 672 | "\n", 673 | "前10名股东及前10名无限售流通股股东因转融通出借/归还原因导致较上期发生变化\n", 674 | "口适用不适用\n", 675 | "\n", 676 | "### (二)公司优先股股东总数及前10名优先股股东持股情况表\n", 677 | "\n", 678 | "口适用不适用\n", 679 | "\n", 680 | "### (三)限售股份变动情况\n", 681 | "\n", 682 | "口适用不适用\n", 683 | "\n", 684 | "## 三、其他重要事项\n", 685 | "\n", 686 | "适用口不适用\n", 687 | "\n", 688 | "1、公司发行股份及支付现金购买资产并募集配套资企事项\n", 689 | "\n", 690 | "(1)2024年1月31口,公司收到深圳证券交易所的通知,公司因重人资产重组申请文件中记载的财务资料已过有效期, 需要补充提交。按照《深圳证券交易所上市公司重大资产重组市核规则》的相关规定,深圳证券交易所对公司木次重组\n", 691 | "中止审核,具体内容详见公司于2024年2月1日在巨潮资讯网(http://www.cninfo.com.cn)上披露的相关公告。\n", 692 | "\n", 693 | "(2)2024年2月27日,公司召开了第三届董事会第十二次会议和第三届监事会第十一次会议,审议通过了《关于调整 公司发行股份及支付现金购买资产并募集配套资金方案的议案》等相关议案,并向深圳证券交易所更新补充了以2023年 10月31口为审计基准口的加期审计及申请文件。根据《深圳证券交易所上市公司重大资产重组审核规则》的相关规定, 公司已向深圳证券交易所提交了恢复审核的中请,具体内容详见公司于2024年2月28H在已潮资讯网\n", 694 | "(http://www.cninfo.com.cn)上披露的相关公告。\n", 695 | "\n", 696 | "(3)2024年2月28日,公司收到深圳证券交易所同意恢复本次重组审核的回复,具体内容详见公司于2024年3月1日\n", 697 | "在巨潮资讯网(http://www.cninfo.com.cn)上披露的相关公告。\n", 698 | "\n", 699 | "2、独立董事变动情况\n", 700 | "\n", 701 | "2024年2月6日,公司独立董事牛丹先生因个人原因申请辞去公司独立董事及薪酬与考核委员会主任委员(召集人)、 提名委员会委员、战略委员会委员的职务。辞职后,牛丹先生不再担任公司及子公司任何职务。鉴于牛丹先生辞职会导 致公司董事会及相关专门委员会中独立董事所比例不符合法律法规和《公司章程》的规定,其辞职在公可股东大会选\n", 702 | "举产生新任独立董事之后生效。\n", 703 | "\n", 704 | "2024年2月7日,公司召开第三届董事会第十·次会议,审议通过了《关于补选公司第三届董事会独立董事的议案》。 经董事会提名委员会资格审查,公司董事会同意提名凌旭峰先生为公司第一届董事会独立董事候选人,并在股东大会审 议通过后,由其担任新酬与考核委员会主任委员(们集人)、提名委员会委员、战略委员会委员,任期门股东人会审议 通过之日起至第三届董事会任期届满之日止。具体内容见公司于2024年2月8日在巳潮资讯网\n", 705 | "(http://www.cninfo.com.cn)1:披露的关公告。\n", 706 | "\n", 707 | "2024年2月23日,公司召开2024年第·一次临时股东大会,审议通过了《关于补选公司第三届董事会独立重事的议案》,\n", 708 | "同意补选凌旭峰先生为公司第一届董事会独立董事,任期自股东大会审议通过之日起至第一届董事会任期届满之日止。\n", 709 | "具体内容见公司于2024年2月24口在巨潮资讯网(http://www.cninfo.com.cn)上披露的相关公告。\n", 710 | "\n", 711 | "3、监事变动情况\n", 712 | "\n", 713 | "2024年3月25日,公司职工代表监事唐涛先生因个人原因申请辞去公司职工代表监事职务。辞职后,唐涛先生将不再 担任公司任何职务。鉴丁唐涛先生辞去监事职务后,会导致公司监事会人数低于法定人数的情形,为保证监事会正常运 行,公司于2024年3月25H召开职工代衣大会,经与会职工代表币议并表决,同意补选庞胜先生为公司第二届监事会 职工代表监事,与公司其他监事共同组成公司第一届监事会,任期自本次职工代表大会通过之日起至第一届监事会庙满\n", 714 | "之口it。具体内容见公司于2024年3月26口在巨潮资讯网(http://www.cninfo.com.cn)上披露的相关公告。\n", 715 | "\n", 716 | "## 四、季度财务报表\n", 717 | "\n", 718 | "### (一)财务报表\n", 719 | "\n", 720 | "#### 1、合并资产负债表\n", 721 | "\n", 722 | "编制单位:罗博特科智能科技股份有限公司\n", 723 | "\n", 724 | "2024年03月31口\n", 725 | "\n", 726 | "单位:元\n", 727 | "\n", 728 | "\n", 729 | "```table\n", 730 | "项目\n", 731 | " 期末余额\n", 732 | " 期初余额\n", 733 | "\n", 734 | "流动资产:\n", 735 | " 货币资金\n", 736 | " 260,877,557.28\n", 737 | " 238,808,283.68\n", 738 | "\n", 739 | "结算备付金\n", 740 | " 拆出资金\n", 741 | "\n", 742 | "交易性金融资产\n", 743 | " 10,000,000.00\n", 744 | "\n", 745 | "衍生金融资产\n", 746 | "\n", 747 | "应收票据\n", 748 | " 应收账款\n", 749 | " 334,136,108.85\n", 750 | " 285,965,826.98\n", 751 | "\n", 752 | "应收款项融资\n", 753 | " 68,747,319.59\n", 754 | " 76,414,883.83\n", 755 | "\n", 756 | "预付款项\n", 757 | " 49,310,927.24\n", 758 | " 42,772,667.55\n", 759 | "\n", 760 | "应收保费\n", 761 | "\n", 762 | "应收分保账款应收分保合同准备金\n", 763 | "\n", 764 | "其他应收款\n", 765 | " 1,093,941.60\n", 766 | " 1,298,299.32\n", 767 | "\n", 768 | "其中:应收利息\n", 769 | " 应收股利\n", 770 | " 买入返售金融资产\n", 771 | "\n", 772 | "存货\n", 773 | " 568,718,980.65\n", 774 | " 500,618,635.40\n", 775 | "\n", 776 | "其中:数据资源\n", 777 | "\n", 778 | "合同资产\n", 779 | " 570,666,327.42\n", 780 | " 566,183,861.12\n", 781 | "\n", 782 | "持有待售资产\n", 783 | "\n", 784 | "年内到期的非流动资产\n", 785 | "\n", 786 | "其他流动资产\n", 787 | " 8,614,782.41\n", 788 | " 19,196,956.51\n", 789 | "\n", 790 | "流动资产合计\n", 791 | " 1,872,165,945.04\n", 792 | " 1,731,259,414.39\n", 793 | "\n", 794 | "非流动资产:\n", 795 | "\n", 796 | "发放贷款和垫款\n", 797 | "\n", 798 | "债权投资\n", 799 | "\n", 800 | "其他债权投资\n", 801 | " 长期应收款\n", 802 | " 长期股权投资\n", 803 | " 209,582,294.62\n", 804 | " 209,512,205.87\n", 805 | "\n", 806 | "其他权益工具投资\n", 807 | " 其他非流动金融资产\n", 808 | " 30,000,000.00\n", 809 | " 30,000,000.00\n", 810 | "\n", 811 | "投资性房地产\n", 812 | "\n", 813 | "固定资产\n", 814 | " 264,907,961.48\n", 815 | " 270,487,621.04\n", 816 | "\n", 817 | "在建工程\n", 818 | " 25,933,539.72\n", 819 | " 21,650,676.11\n", 820 | "\n", 821 | "生产性生物资产\n", 822 | "\n", 823 | "油气资产\n", 824 | " 使用权资产\n", 825 | " 818,622.12\n", 826 | " 889,004.94\n", 827 | "\n", 828 | "无形资产\n", 829 | " 51,203,750.73\n", 830 | " 52,637,409.34\n", 831 | "\n", 832 | "其中:数据资源\n", 833 | "\n", 834 | "开发支出\n", 835 | "\n", 836 | "其中:数据资源\n", 837 | "\n", 838 | "商誉\n", 839 | " 7,744,546.19\n", 840 | " 7,744,546.19\n", 841 | "\n", 842 | "长期待摊费用\n", 843 | " 193,425.06\n", 844 | " 157,787.00\n", 845 | "\n", 846 | "递延所得税资产\n", 847 | " 32,018,709.80\n", 848 | " 32,177,031.56\n", 849 | "\n", 850 | "其他非流动资产\n", 851 | " 220,932,651.51\n", 852 | " 210,862,680.96\n", 853 | "\n", 854 | "非流动资产合计\n", 855 | " 843,335,501.23\n", 856 | " 836,118,963.01\n", 857 | "\n", 858 | "资产总计\n", 859 | " 2,715,501,446.27\n", 860 | " 2,567,378,377.40\n", 861 | "\n", 862 | "流动负债:\n", 863 | " 短期借款\n", 864 | " 811,876,352.02\n", 865 | " 641,396,816.34\n", 866 | "\n", 867 | "向中央银行借款\n", 868 | "\n", 869 | "拆入资金\n", 870 | "\n", 871 | "交易性金融负债\n", 872 | " 衍生金融负债\n", 873 | "\n", 874 | "应付票据\n", 875 | " 79,882,961.26\n", 876 | " 117,003,716.55\n", 877 | "\n", 878 | "应付账款\n", 879 | " 533,018,940.58\n", 880 | " 522,971,287.90\n", 881 | "\n", 882 | "预收款项\n", 883 | " 合同负债\n", 884 | " 219,908,300.39\n", 885 | " 204,173,827.28\n", 886 | "\n", 887 | "卖出回购金融资产款\n", 888 | " 吸收存款及同业存放\n", 889 | "\n", 890 | "代理买卖证券款\n", 891 | " 代理承销证券款\n", 892 | " 应付职工薪酬\n", 893 | " 9,569,235.08\n", 894 | " 25,512,136.67\n", 895 | "\n", 896 | "应交税费\n", 897 | " 5,926,806.75\n", 898 | " 4,387,630.71\n", 899 | "\n", 900 | "其他应付款\n", 901 | " 16,207,156.69\n", 902 | " 18,642,889.25\n", 903 | "\n", 904 | "其中:应付利息\n", 905 | " 应付股利应付手续费及佣金\n", 906 | "\n", 907 | "应付分保账款\n", 908 | " 持有待售负债\n", 909 | "\n", 910 | "一年内到期的非流动负债\n", 911 | " 10,121,564.90\n", 912 | " 10,147,374.97\n", 913 | "\n", 914 | "其他流动负债\n", 915 | " 20,843,156.06\n", 916 | " 22,842,240.66\n", 917 | "\n", 918 | "流动负债合计\n", 919 | " 1,707,354,473.73\n", 920 | " 1,567,077,920.33\n", 921 | "\n", 922 | "非流动负债:\n", 923 | "\n", 924 | "保险合同准备金\n", 925 | "\n", 926 | "长期借款\n", 927 | " 20,011,933.26\n", 928 | " 20,022,622.57\n", 929 | "\n", 930 | "应付债券\n", 931 | "\n", 932 | "其中:优先股\n", 933 | " 永续债\n", 934 | "\n", 935 | "租赁负债\n", 936 | " 11,252.69\n", 937 | "\n", 938 | "长期应付款\n", 939 | "\n", 940 | "长期应付职工薪酬\n", 941 | "\n", 942 | "预计负债\n", 943 | " 递延收益\n", 944 | "\n", 945 | "递延所得税负债\n", 946 | " 其他非流动负债\n", 947 | " 非流动负债合计\n", 948 | " 20,011,933.26\n", 949 | " 20,033,875.26\n", 950 | "\n", 951 | "负债合计\n", 952 | " 1,727,366,406.99\n", 953 | " 1,587,111,795.59\n", 954 | "\n", 955 | "所有者权益:\n", 956 | "\n", 957 | "股本\n", 958 | " 110,388,986.00\n", 959 | " 110,388,986.00\n", 960 | "\n", 961 | "其他权益工具\n", 962 | " 其中:优先股\n", 963 | " 永续债\n", 964 | "\n", 965 | "资本公积\n", 966 | " 573,418,828.59\n", 967 | " 571,605,286.90\n", 968 | "\n", 969 | "减:库存股\n", 970 | " 3,265,691.50\n", 971 | " 3,265,691.50\n", 972 | "\n", 973 | "其他综合收益\n", 974 | " 9,395,316.14\n", 975 | " 9,118,601.78\n", 976 | "\n", 977 | "专项储备\n", 978 | " 盈余公积\n", 979 | " 43,980,130.86\n", 980 | " 43,980,130.86\n", 981 | "\n", 982 | "一般风险准备\n", 983 | " 未分配利润\n", 984 | " 256,372,727.40\n", 985 | " 250,474,644.92\n", 986 | "\n", 987 | "归属于母公司所有者权益合计\n", 988 | " 990,290,297.49\n", 989 | " 982,301,958.96\n", 990 | "\n", 991 | "少数股东权益\n", 992 | " -2,155,258.21\n", 993 | " -2,035,377.15\n", 994 | "\n", 995 | "所有者权益合计\n", 996 | " 988,135,039.28\n", 997 | " 980,266,581.81\n", 998 | "\n", 999 | "负债和所有者权益总计\n", 1000 | " 2,715,501,446.27\n", 1001 | " 2,567,378,377.40\n", 1002 | "```\n", 1003 | "\n", 1004 | "\n", 1005 | "法定代表人:戴军\n", 1006 | "\n", 1007 | "主管会计工作负责人:杨雪莉\n", 1008 | "\n", 1009 | "会计机构负责人:刘洋\n", 1010 | "\n", 1011 | "#### 2、合并利润表\n", 1012 | "\n", 1013 | "单位:元\n", 1014 | "\n", 1015 | "\n", 1016 | "```table\n", 1017 | "项目\n", 1018 | " 本期发生额\n", 1019 | " 上期发生额\n", 1020 | "\n", 1021 | "、营业总收入\n", 1022 | " 262,995,118.29\n", 1023 | " 259,047,714.77\n", 1024 | "\n", 1025 | "其中:营业收入\n", 1026 | " 262,995,118.29\n", 1027 | " 259,047,714.77\n", 1028 | "\n", 1029 | "利息收入\n", 1030 | " 已赚保费\n", 1031 | "\n", 1032 | "手续费及佣金收入\n", 1033 | "\n", 1034 | "营业总成本\n", 1035 | " 250,169,886.00\n", 1036 | " 248,873,091.49\n", 1037 | "\n", 1038 | "其中:营业成本\n", 1039 | " 201,333,386.91\n", 1040 | " 206,609,450.42\n", 1041 | "\n", 1042 | "利息支出\n", 1043 | "\n", 1044 | "手续费及佣金支出\n", 1045 | "\n", 1046 | "退保金\n", 1047 | "\n", 1048 | "赔付支出净额提取保险责任准备金净额\n", 1049 | "\n", 1050 | "保单红利支出\n", 1051 | "\n", 1052 | "分保费用\n", 1053 | " 税金及附加\n", 1054 | " 1,990,804.83\n", 1055 | " 1,353.377.73\n", 1056 | "\n", 1057 | "销售费用\n", 1058 | " 12,995,238.17\n", 1059 | " 13,924,207.98\n", 1060 | "\n", 1061 | "管理费用\n", 1062 | " 12,220,781.93\n", 1063 | " 8,319,216.64\n", 1064 | "\n", 1065 | "研发费用\n", 1066 | " 18,850,542.93\n", 1067 | " 15,421,964.96\n", 1068 | "\n", 1069 | "财务费用\n", 1070 | " 2,779,131.23\n", 1071 | " 3,244,873.76\n", 1072 | "\n", 1073 | "其中:利息费用\n", 1074 | " 3,979,831.52\n", 1075 | " 3,053,913.09\n", 1076 | "\n", 1077 | "利息收入\n", 1078 | " 731,421.23\n", 1079 | " 250,860.62\n", 1080 | "\n", 1081 | "加:其他收益\n", 1082 | " 3,675,556.17\n", 1083 | " 1,735,321.57\n", 1084 | "\n", 1085 | "投资收益(损失以“一”号填\n", 1086 | "\n", 1087 | "70,088.75\n", 1088 | " 99,638.58\n", 1089 | "\n", 1090 | "列)\n", 1091 | "\n", 1092 | "其中:对联营企业和合营\n", 1093 | "\n", 1094 | "70,088.75\n", 1095 | " 6,590.95\n", 1096 | "\n", 1097 | "企业的投资收益\n", 1098 | "\n", 1099 | "以摊余成本计量的\n", 1100 | "\n", 1101 | "金融资产终止确认收益\n", 1102 | "\n", 1103 | "汇兑收益(损失以“\"号填列)\n", 1104 | " 净散口套期收益(损失以“一”\n", 1105 | "\n", 1106 | "号填列)\n", 1107 | "\n", 1108 | "公允价值变动收益(损失以\n", 1109 | "\n", 1110 | "号填列)\n", 1111 | "\n", 1112 | "信用减值损失(损失以“”号填\n", 1113 | "\n", 1114 | "-5,955,396.40\n", 1115 | " 4,746,157.74\n", 1116 | "\n", 1117 | "列)\n", 1118 | "\n", 1119 | "资产减值损失(损失以\"\"号填\n", 1120 | "\n", 1121 | "-2,467,488.74\n", 1122 | " -2,003,499.20\n", 1123 | "\n", 1124 | "列)\n", 1125 | "\n", 1126 | "资产处置收益(损失以“\"号填\n", 1127 | "\n", 1128 | "140,939.71\n", 1129 | "\n", 1130 | "列)\n", 1131 | "\n", 1132 | "三、营业利润(亏损以“-”号填列)\n", 1133 | " 8,147,992.07\n", 1134 | " 5,400,866.20\n", 1135 | "\n", 1136 | "加:营业外收入\n", 1137 | " 51,028.40\n", 1138 | " 1,097.66\n", 1139 | "\n", 1140 | "减:营业外支出\n", 1141 | " 8,445.17\n", 1142 | " 978,000.71\n", 1143 | "\n", 1144 | "四、利润总额(亏损总额以“一”号填\n", 1145 | " 8,190,575.30\n", 1146 | " 4,423,963.15\n", 1147 | "\n", 1148 | "列)\n", 1149 | "\n", 1150 | "减:所得税费用\n", 1151 | " 2,461,205.83\n", 1152 | " 384,346.03\n", 1153 | "\n", 1154 | "五、净利润(净亏损以“一\"号填列)\n", 1155 | " 5,729,369.47\n", 1156 | " 4,039,617.12\n", 1157 | "\n", 1158 | "(一)按经营持续性分类\n", 1159 | "\n", 1160 | "1.持续经营净利润(净亏损以“一”\n", 1161 | "\n", 1162 | "5,729,369.47\n", 1163 | " 4,039,617.12\n", 1164 | "\n", 1165 | "号填列)\n", 1166 | "\n", 1167 | "2.终止经营净利润(净亏损以“一\n", 1168 | "\n", 1169 | "号填列)\n", 1170 | "\n", 1171 | "(二)按所有权归属分类\n", 1172 | "\n", 1173 | "1.归属于母公司所有者的净利润\n", 1174 | " 5,898,082.48\n", 1175 | " 4,236,096.83\n", 1176 | "\n", 1177 | "2.少数股东损益\n", 1178 | " -168,713.01\n", 1179 | " -196,479.71\n", 1180 | "\n", 1181 | "六、其他综合收益的税后净额\n", 1182 | " 325,546.31\n", 1183 | " -12,514.02\n", 1184 | "\n", 1185 | "归属母公司所有者的其他综合收益\n", 1186 | " 276,714.36\n", 1187 | " -10,636.92\n", 1188 | "\n", 1189 | "的税后净额\n", 1190 | "\n", 1191 | "(一)不能重分类进损益的其他\n", 1192 | "\n", 1193 | "综合收益\n", 1194 | "\n", 1195 | "1.重新计量设定受益计划变动\n", 1196 | "\n", 1197 | "额\n", 1198 | "\n", 1199 | "2.权益法下不能转损益的其他\n", 1200 | "\n", 1201 | "综合收益\n", 1202 | "```\n", 1203 | "\n", 1204 | "\n", 1205 | "\n", 1206 | "```table\n", 1207 | "3.其他权益工具投资公允价值\n", 1208 | "\n", 1209 | "变动\n", 1210 | "\n", 1211 | "4.企业自身信用风险公允价值\n", 1212 | "\n", 1213 | "变动\n", 1214 | "\n", 1215 | "5.其他\n", 1216 | "\n", 1217 | "(二)将重分类进损益的其他综\n", 1218 | "\n", 1219 | "276,714.36\n", 1220 | " -10,636.92\n", 1221 | "\n", 1222 | "合收益\n", 1223 | "\n", 1224 | "1.权益法下可转损益的其他综\n", 1225 | "\n", 1226 | "合收益\n", 1227 | "\n", 1228 | "2.其他债权投资公允价值变动\n", 1229 | " 3.金融资产重分类计入其他综\n", 1230 | "\n", 1231 | "合收益的金额\n", 1232 | "\n", 1233 | "4.其他债权投资信用减值准备\n", 1234 | "\n", 1235 | "5.现金流量套期储备\n", 1236 | "\n", 1237 | "6.外币财务报表折算差额\n", 1238 | " 276,714.36\n", 1239 | " -10,636.92\n", 1240 | "\n", 1241 | "7.其他\n", 1242 | "\n", 1243 | "归属于少数股东的其他综合收益的\n", 1244 | " 48,831.95\n", 1245 | " -1,877.10\n", 1246 | "\n", 1247 | "税后净额\n", 1248 | "\n", 1249 | "七、综合收益总额\n", 1250 | " 6,054,915.78\n", 1251 | " 4,027,103.10\n", 1252 | "\n", 1253 | "归属于母公司所有者的综合收益总\n", 1254 | "\n", 1255 | "6,174,796.84\n", 1256 | " 4,225,459.91\n", 1257 | "\n", 1258 | "额\n", 1259 | "\n", 1260 | "归属于少数股东的综合收益总额\n", 1261 | " -119,881.06\n", 1262 | " -198,356.81\n", 1263 | "\n", 1264 | "八、每股收益:\n", 1265 | "\n", 1266 | "(一)基本每股收益\n", 1267 | " 0.05\n", 1268 | " 0.04\n", 1269 | "\n", 1270 | "(二)稀释每股收益\n", 1271 | " 0.05\n", 1272 | " 0.04\n", 1273 | "```\n", 1274 | "\n", 1275 | "\n", 1276 | "本期发生同控制下企业合并的,被合并方在合并前实现的净利润为:元,上期被合并方实现的净利润为:元。\n", 1277 | "法定代表人:戴军 主管会计工作负责人:杨雪莉 会计机构负责人:刘洋\n", 1278 | "\n", 1279 | "#### 3、合并现金流量表\n", 1280 | "\n", 1281 | "单位:元\n", 1282 | "\n", 1283 | "\n", 1284 | "```table\n", 1285 | "项目\n", 1286 | " 本期发生额\n", 1287 | " 上期发生额\n", 1288 | "\n", 1289 | "、经营活动产生的现金流量:\n", 1290 | "\n", 1291 | "销售商品、提供劳务收到的现金\n", 1292 | " 131,754,467.94\n", 1293 | " 124,999,700.04\n", 1294 | "\n", 1295 | "客户存款和同业存放款项净增加额\n", 1296 | "\n", 1297 | "向中央银行借款净增加额\n", 1298 | "\n", 1299 | "向其他金融机构拆入资金净增加额\n", 1300 | " 收到原保险合同保费取得的现金\n", 1301 | "\n", 1302 | "收到再保业务现金净额\n", 1303 | "\n", 1304 | "保户储金及投资款净增加额\n", 1305 | "\n", 1306 | "收取利息、手续费及佣金的现金\n", 1307 | "\n", 1308 | "拆入资金净增加额\n", 1309 | "\n", 1310 | "回购业务资金净增加额\n", 1311 | "\n", 1312 | "代理买卖证券收到的现金净额\n", 1313 | "\n", 1314 | "收到的税费返还\n", 1315 | " 18,595,317.11\n", 1316 | " 4,780,716.66\n", 1317 | "\n", 1318 | "收到其他与经营活动有关的现金\n", 1319 | " 5,242,974.80\n", 1320 | " 2,374,962.82\n", 1321 | "\n", 1322 | "经营活动现金流入小计\n", 1323 | " 155,592,759.85\n", 1324 | " 132,155,379.52\n", 1325 | "\n", 1326 | "购买商品、接受劳务支付的现金\n", 1327 | " 206,294,819.38\n", 1328 | " 96,831,173.14\n", 1329 | "\n", 1330 | "客户贷款及垫款净增加额\n", 1331 | "\n", 1332 | "存放中央银行和同业款项净增加额\n", 1333 | " 支付原保险合同赔付款项的现金\n", 1334 | "\n", 1335 | "拆出资金净增加额\n", 1336 | "```\n", 1337 | "\n", 1338 | "\n", 1339 | "\n", 1340 | "```table\n", 1341 | "支付利息、手续费及佣金的现金\n", 1342 | "\n", 1343 | "支付保单红利的现金\n", 1344 | "\n", 1345 | "支付给职工以及为职工支付的现金\n", 1346 | " 54,183,333.71\n", 1347 | " 47,242,498.43\n", 1348 | "\n", 1349 | "支付的各项税费\n", 1350 | " 3,860,476.40\n", 1351 | " 7,777,423.81\n", 1352 | "\n", 1353 | "支付其他与经营活动有关的现金\n", 1354 | " 10,881,458.41\n", 1355 | " 7,067,747.72\n", 1356 | "\n", 1357 | "经营活动现金流出小计\n", 1358 | " 275,220,087.90\n", 1359 | " 158,918,843.10\n", 1360 | "\n", 1361 | "经营活动产生的现金流量净额\n", 1362 | " -119,627,328.05\n", 1363 | " -26,763,463.58\n", 1364 | "\n", 1365 | "二、投资活动产生的现金流量:\n", 1366 | "\n", 1367 | "收回投资收到的现金\n", 1368 | "\n", 1369 | "取得投资收益收到的现金\n", 1370 | "\n", 1371 | "处置固定资产、无形资产和其他长\n", 1372 | " 26,000.00\n", 1373 | "\n", 1374 | "期资产收回的现金净额\n", 1375 | "\n", 1376 | "处置子公司及其他营业单位收到的\n", 1377 | "\n", 1378 | "现金净额\n", 1379 | "\n", 1380 | "收到其他与投资活动有关的现金\n", 1381 | " 75,093,047.63\n", 1382 | "\n", 1383 | "投资活动现金流入小计\n", 1384 | " 26,000.00\n", 1385 | " 75,093,047.63\n", 1386 | "\n", 1387 | "购建固定资产、无形资产和其他长\n", 1388 | " 9,634,339.75\n", 1389 | " 5,475,121.28\n", 1390 | "\n", 1391 | "期资产支付的现金\n", 1392 | " 投资支付的现金\n", 1393 | " 质押贷款净增加额\n", 1394 | "\n", 1395 | "取得子公司及其他营业单位支付的\n", 1396 | "\n", 1397 | "现金净额\n", 1398 | "\n", 1399 | "支付其他与投资活动有关的现金\n", 1400 | " 10,040,000.00\n", 1401 | " 54,961,600.00\n", 1402 | "\n", 1403 | "投资活动现金流出小计\n", 1404 | " 19,674,339.75\n", 1405 | " 60,436,721.28\n", 1406 | "\n", 1407 | "投资活动产生的现金流量净额\n", 1408 | " -19,648,339.75\n", 1409 | " 14,656,326.35\n", 1410 | "\n", 1411 | "三、筹资活动产生的现金流量:\n", 1412 | "\n", 1413 | "吸收投资收到的现金\n", 1414 | "\n", 1415 | "其中:子公司吸收少数股东投资\n", 1416 | "\n", 1417 | "收到的现金\n", 1418 | "\n", 1419 | "取得借款收到的现金\n", 1420 | " 273,000,000.00\n", 1421 | " 125,024,000.00\n", 1422 | "\n", 1423 | "收到其他与筹资活动有关的现金\n", 1424 | "\n", 1425 | "筹资活动现金流入小计\n", 1426 | " 273,000,000.00\n", 1427 | " 125,024,000.00\n", 1428 | "\n", 1429 | "偿还债务支付的现金\n", 1430 | " 99,600,000.00\n", 1431 | " 140,000,000.00\n", 1432 | "\n", 1433 | "分配股利、利润或偿付利息支付的\n", 1434 | "\n", 1435 | "3,797,421.32\n", 1436 | " 3,522,363.85\n", 1437 | "\n", 1438 | "现金\n", 1439 | "\n", 1440 | "其中:子公司支付给少数股东的\n", 1441 | "\n", 1442 | "股利、利润\n", 1443 | "\n", 1444 | "支付其他与筹资活动有关的现金\n", 1445 | "\n", 1446 | "筹资活动现金流出小计\n", 1447 | " 103,397,421.32\n", 1448 | " 143,522,363.85\n", 1449 | "\n", 1450 | "筹资活动产生的现金流量净额\n", 1451 | " 169,602,578.68\n", 1452 | " -18,498,363.85\n", 1453 | "\n", 1454 | "四、汇率变动对现金及现金等价物的\n", 1455 | "\n", 1456 | "-112,476.19\n", 1457 | " -120,896.88\n", 1458 | "\n", 1459 | "影响\n", 1460 | "\n", 1461 | "五、现金及现金等价物净增加额\n", 1462 | " 30,214,434.69\n", 1463 | " -30,726,397.96\n", 1464 | "\n", 1465 | "加:期初现金及现金等价物余额\n", 1466 | " 215,117,710.19\n", 1467 | " 177,644,730.91\n", 1468 | "\n", 1469 | "六、期末现金及现金等价物余额\n", 1470 | " 245,332,144.88\n", 1471 | " 146,918,332.95\n", 1472 | "```\n", 1473 | "\n", 1474 | "\n", 1475 | "### (二)2024年起首次执行新会计准则调整首次执行当年年初财务报表相关项目情况\n", 1476 | "\n", 1477 | "口适用不适用\n", 1478 | "\n", 1479 | "### (三)审计报告\n", 1480 | "\n", 1481 | "第·季度报告是否经过审计\n", 1482 | "口是否\n", 1483 | "\n", 1484 | "公司第一季度报告未经审计。\n", 1485 | "\n", 1486 | "### 资产负债表\n", 1487 | "\n", 1488 | "2024年3月31日\n", 1489 | "\n", 1490 | "编制单位:罗博特科智能科技股份有限公司\n", 1491 | "\n", 1492 | "会企01表\n", 1493 | "\n", 1494 | "\n", 1495 | "```table\n", 1496 | "资产\n", 1497 | " 期末数\n", 1498 | " 上年年末数\n", 1499 | " 负债和所有者权益\n", 1500 | " 期末数\n", 1501 | " 上年年末数\n", 1502 | "\n", 1503 | "流动资产:\n", 1504 | " 流动负债:\n", 1505 | "\n", 1506 | "货币资金\n", 1507 | " 194, 390, 880. 64\n", 1508 | " 130, 946,017.53\n", 1509 | " 短期借款\n", 1510 | " 767,056, 725.17\n", 1511 | " 541, 557, 068.73\n", 1512 | "\n", 1513 | "交易性金融资产\n", 1514 | " 交易性金融负债\n", 1515 | "\n", 1516 | "衍生金融资产\n", 1517 | " 衍生金融负债\n", 1518 | "\n", 1519 | "应收票据\n", 1520 | " 应付票据\n", 1521 | " 79, 882, 961. 26\n", 1522 | " 103, 110, 128. 20\n", 1523 | "\n", 1524 | "应收账款\n", 1525 | " 263, 834,023.89\n", 1526 | " 227,990, 523.18\n", 1527 | " 应付账款\n", 1528 | " 414,835, 202.57\n", 1529 | " 394, 523, 341. 03\n", 1530 | "\n", 1531 | "应收款项融资\n", 1532 | " 19, 091, 152.51\n", 1533 | " 56,495,082.83\n", 1534 | " 预收款项\n", 1535 | "\n", 1536 | "预付款项\n", 1537 | " 61, 424, 979. 50\n", 1538 | " 57,824, 915.98\n", 1539 | " 合同负债\n", 1540 | " 144,019, 143.32\n", 1541 | "\n", 1542 | "其他应收款\n", 1543 | " 35, 337, 515. 71\n", 1544 | " 23,730,009.86\n", 1545 | " 应付职工薪酬\n", 1546 | " 770,394.70\n", 1547 | "\n", 1548 | "存货\n", 1549 | " 437,859, 191.30\n", 1550 | " 331, 280, 418. 70\n", 1551 | " 应交税费\n", 1552 | " H8, 141.67\n", 1553 | "\n", 1554 | "合同资产\n", 1555 | " 501,033,974.01\n", 1556 | " 523,348,348.92\n", 1557 | " 其他应付款\n", 1558 | " 一\n", 1559 | " 5,250.74\n", 1560 | "\n", 1561 | "持有待售资产\n", 1562 | " 持有待售负债\n", 1563 | "\n", 1564 | "一年内到期的非流动\n", 1565 | " 年内到期的非流\n", 1566 | " 016, 319.44\n", 1567 | "\n", 1568 | "其他流动资产\n", 1569 | " 4, 928, 921.91\n", 1570 | " 13, 062, 364. 74\n", 1571 | " 其他流动负债\n", 1572 | " 15, 023, 680.26\n", 1573 | "\n", 1574 | "流动资产合计\n", 1575 | " 1, 517, 900,639.47\n", 1576 | " 1,364,677, 681. 74\n", 1577 | " 流动负债合计\n", 1578 | " 1, 454, 1101.\n", 1579 | " 1, 293, 113, 468.09\n", 1580 | "\n", 1581 | "非流动负债:\n", 1582 | " 长期借款\n", 1583 | " 20, 011, 933. 26\n", 1584 | " 20, 022, 622.57\n", 1585 | "\n", 1586 | "应付债券\n", 1587 | "\n", 1588 | "其中:优先股\n", 1589 | " 永续债\n", 1590 | "\n", 1591 | "赁负债\n", 1592 | "\n", 1593 | "非流动资产:\n", 1594 | " 债权投资\n", 1595 | "\n", 1596 | "其他债权投资\n", 1597 | " 预计\n", 1598 | "\n", 1599 | "长期应收款\n", 1600 | " 2059\n", 1601 | " 6\n", 1602 | "\n", 1603 | "长期股权投资\n", 1604 | " 608, 685, 855.51\n", 1605 | " 25,766.76\n", 1606 | "\n", 1607 | "其他权益工具投资\n", 1608 | " 其他业\n", 1609 | "\n", 1610 | "其他非流动金融资产\n", 1611 | " 30,000,000.00\n", 1612 | " 30, 000, 000. 00\n", 1613 | " 非流动负债合计\n", 1614 | " 20, 011,933. 26\n", 1615 | " 20, 022,622.57\n", 1616 | "\n", 1617 | "投资性房地产\n", 1618 | " 负债合计\n", 1619 | " 1, 474, 151, 034. 73\n", 1620 | " 1, 313, 136, 090. 66\n", 1621 | "\n", 1622 | "固定资产\n", 1623 | " 18, 306,829.66\n", 1624 | " 19, 802, 944.87\n", 1625 | " 所有者权益(或股东权益):\n", 1626 | "\n", 1627 | "在建工程\n", 1628 | " 25, 681, 671. 61\n", 1629 | " 21, 628, 540. 18\n", 1630 | " 实收资本(或股本)\n", 1631 | " 110, 388, 986.00\n", 1632 | " 110,388, 986.00\n", 1633 | "\n", 1634 | "生产性生物资产\n", 1635 | " 其他权益工具\n", 1636 | "\n", 1637 | "油气资产\n", 1638 | " 其中:优先股\n", 1639 | "\n", 1640 | "使用权资产\n", 1641 | " 712,742.21\n", 1642 | " 753,086.12\n", 1643 | " 永续债\n", 1644 | "\n", 1645 | "无形资产\n", 1646 | " 11, 984, 646. 22\n", 1647 | " 12, 178, 665.80\n", 1648 | " 资本公积\n", 1649 | " 570,329,435. 52\n", 1650 | " 566, 903, 571.74\n", 1651 | "\n", 1652 | "开发支出\n", 1653 | " 减:库存股\n", 1654 | " 3,265,691. 50\n", 1655 | " 3, 265,691.50\n", 1656 | "\n", 1657 | "商誉\n", 1658 | " 其他综合收益\n", 1659 | "\n", 1660 | "长期待摊费用\n", 1661 | " 专项储备\n", 1662 | "\n", 1663 | "递延所得税资产\n", 1664 | " 31, 508, 267.64\n", 1665 | " 29, 895, 945. 55\n", 1666 | " 盈余公积\n", 1667 | " 43,980, 130.86\n", 1668 | " 43, 980, 130.86\n", 1669 | "\n", 1670 | "其他非流动资产\n", 1671 | " 199, 918, 994.21\n", 1672 | " 198, 277, 650.96\n", 1673 | " 未分配利润\n", 1674 | " 249, 115,750.92\n", 1675 | " 251,687, 194.22\n", 1676 | "\n", 1677 | "非流动资产合计\n", 1678 | " 926,799,007.06\n", 1679 | " 918, 152, 600. 24\n", 1680 | " 所有者权益合计\n", 1681 | " 970, 548, 611. 80\n", 1682 | " 969,694, 191.32\n", 1683 | "\n", 1684 | "资产总计\n", 1685 | " 2, 444, 699,646.53\n", 1686 | " 2, 282, 830, 281.98\n", 1687 | " 负债和所有者权益总计\n", 1688 | " 2, 444, 699, 646. 53\n", 1689 | " 2,\n", 1690 | "```\n", 1691 | "\n", 1692 | "\n", 1693 | "法定代表人:\n", 1694 | "\n", 1695 | "主管会计工作的负责人:\n", 1696 | "\n", 1697 | "会计机负山点 编制单位:罗博特科智能科技股份有限公司\n", 1698 | "\n", 1699 | "去定代表人:主管会计工作的负责人:会计机构负责\n", 1700 | "\n", 1701 | "会企02表\n", 1702 | "\n", 1703 | "\n", 1704 | "```table\n", 1705 | "项目\n", 1706 | " 注释号\n", 1707 | " 本期数\n", 1708 | " 上年同期数\n", 1709 | "\n", 1710 | "一、营业收入\n", 1711 | " 168, 963, 233. 43\n", 1712 | "\n", 1713 | "减:营业成本\n", 1714 | " 129, 217, 152.69\n", 1715 | "\n", 1716 | "税金及附加\n", 1717 | " 1, 083, 631. 91\n", 1718 | "\n", 1719 | "销售费用\n", 1720 | " 10, 183,727.42\n", 1721 | "\n", 1722 | "管理费用\n", 1723 | " 9, 554, 809.02\n", 1724 | "\n", 1725 | "研发费用\n", 1726 | " 15, 004, 951. 00\n", 1727 | "\n", 1728 | "财务费用\n", 1729 | " 2,546, 051.21\n", 1730 | "\n", 1731 | "其中:利息费用\n", 1732 | " 3,979,831.52\n", 1733 | "\n", 1734 | "利息收入\n", 1735 | " 405,811.55\n", 1736 | "\n", 1737 | "加:其他收益\n", 1738 | " 3,576,367.71\n", 1739 | "\n", 1740 | "投资收益(损失以“-”号填列)\n", 1741 | " 70,088.75\n", 1742 | "\n", 1743 | "其中:对联营企业和合营企业的投资收益\n", 1744 | "\n", 1745 | "以摊余成本计量的金融资产终止确认收益\n", 1746 | "\n", 1747 | "净散口套期收益(损失以“-”号填列)\n", 1748 | " 公允价值变动收益(损失以“-”号填列)\n", 1749 | "\n", 1750 | "信用减值损失(损失以“”号填列)\n", 1751 | " -5,132,599.50\n", 1752 | "\n", 1753 | "资产减值损失(损失以“-”号填列)\n", 1754 | " -2, 460, 965.27\n", 1755 | "\n", 1756 | "资产处置收益(损失以“-”号填列)\n", 1757 | "\n", 1758 | "二、营业利润(亏损以“-”号填列)\n", 1759 | " -2,574,198.13\n", 1760 | "\n", 1761 | "加:营业外收入\n", 1762 | " 11, 200.00\n", 1763 | "\n", 1764 | "减:营业外支出\n", 1765 | " 8,445.17\n", 1766 | "\n", 1767 | "三、利润总额(亏损总额以“-”号填列)\n", 1768 | " -2,571,443.30\n", 1769 | "\n", 1770 | "减:所得税费用\n", 1771 | "\n", 1772 | "四、净利润(净亏损以“”号填列)\n", 1773 | " -2,571,443.30\n", 1774 | "\n", 1775 | "(一)持续经营净利润(净亏损以“”号填列)\n", 1776 | "\n", 1777 | "特科\n", 1778 | "\n", 1779 | "-2, 571, 443. 30\n", 1780 | "\n", 1781 | "(二)终止经营净利润(净亏损以“-”号填列)\n", 1782 | "\n", 1783 | "五、其他综合收益的税后净额\n", 1784 | "\n", 1785 | "(一)不能重分类进损益的其他综合收益\n", 1786 | " 1.重新计量设定受益计划变动额\n", 1787 | "\n", 1788 | "2.权益法下不能转损益的其他综合收益\n", 1789 | "\n", 1790 | "3.其他权益工具投资公允价值变动\n", 1791 | " 4.企业自身信用风险公允价值变动\n", 1792 | " 95\n", 1793 | "\n", 1794 | "5.其他\n", 1795 | "\n", 1796 | "(二)将重分类进损益的其他综合收益\n", 1797 | "\n", 1798 | "1.权益法下可转损益的其他综合收益\n", 1799 | "\n", 1800 | "2.其他债权投资公允价值变动\n", 1801 | "\n", 1802 | "3.金融资产重分类计入其他综合收益的金额\n", 1803 | "\n", 1804 | "4.其他债权投资信用减值准备\n", 1805 | "\n", 1806 | "5.现金流量套期储备\n", 1807 | "\n", 1808 | "6.外币财务报表折算差额\n", 1809 | "\n", 1810 | "7.其他\n", 1811 | " 六、综合收益总额\n", 1812 | " -2,571, 443.30\n", 1813 | "\n", 1814 | "七、每股收益:\n", 1815 | "\n", 1816 | "(一)基本每股收益\n", 1817 | " (二)稀释每股收益\n", 1818 | "```\n", 1819 | "\n", 1820 | "\n", 1821 | "### 现金流量表\n", 1822 | "\n", 1823 | "2024年度1-3月\n", 1824 | "\n", 1825 | "法定代表人:\n", 1826 | "\n", 1827 | "会企03表 单位:人民币元\n", 1828 | "\n", 1829 | "\n", 1830 | "```table\n", 1831 | "项目\n", 1832 | " 本期数\n", 1833 | " 上年同期数\n", 1834 | "\n", 1835 | "、经营活动产生的现金流量:\n", 1836 | "\n", 1837 | "销售商品、提供劳务收到的现金\n", 1838 | " 111, 139,935.73\n", 1839 | "\n", 1840 | "收到的税费返还\n", 1841 | " 18, 595, 317. 11\n", 1842 | "\n", 1843 | "收到其他与经营活动有关的现金\n", 1844 | " 2, 143, 439. 48\n", 1845 | "\n", 1846 | "经营活动现金流入小计\n", 1847 | " 131, 878, 692. 32\n", 1848 | "\n", 1849 | "购买商品、接受劳务支付的现金\n", 1850 | " 177, 551, 148.88\n", 1851 | "\n", 1852 | "支付给职工以及为职工支付的现金\n", 1853 | " 40, 616, 904. 94\n", 1854 | "\n", 1855 | "支付的各项税费\n", 1856 | " 563, 916. 56\n", 1857 | "\n", 1858 | "支付其他与经营活动有关的现金\n", 1859 | " 8,568, 521.93\n", 1860 | "\n", 1861 | "经营活动现金流出小计\n", 1862 | " 227, 300, 492. 31\n", 1863 | "\n", 1864 | "经营活动产生的现金流量净额\n", 1865 | " -95, 421, 799.99\n", 1866 | "\n", 1867 | "收回投资收到的现金\n", 1868 | "\n", 1869 | "取得投资收益收到的现金\n", 1870 | "\n", 1871 | "处置固定资产、无形资产和其他长期资产收回的现金净额\n", 1872 | "\n", 1873 | "处置子公司及其他营业单位收到的现金净额\n", 1874 | "\n", 1875 | "收到其他与投资活动有关的现金\n", 1876 | " 265, 040, 000. 00\n", 1877 | "\n", 1878 | "投资活动现金流入小计\n", 1879 | " 265, 040, 000. 00\n", 1880 | "\n", 1881 | "购建固定资产、无形资产和其他长期资产支付的现金\n", 1882 | " 4, 691, 256. 68\n", 1883 | "\n", 1884 | "投资支付的现金\n", 1885 | " 3, 000, 000. 00\n", 1886 | "\n", 1887 | "取得子公司及其他营业单位支付的现金净额\n", 1888 | "\n", 1889 | "支付其他与投资活动有关的现金\n", 1890 | " 256, 812, 514. 66\n", 1891 | "\n", 1892 | "投资活动现金流出小计\n", 1893 | " 264, 503, 771. 34\n", 1894 | "\n", 1895 | "投资活动产生的现金流量净额\n", 1896 | " 536, 228.66\n", 1897 | "\n", 1898 | "三、筹资活动产生的现金流量:\n", 1899 | "\n", 1900 | "吸收投资收到的现金\n", 1901 | "\n", 1902 | "日北\n", 1903 | "\n", 1904 | "取得借款收到的现金\n", 1905 | " 5,000,aoo.\n", 1906 | "\n", 1907 | "收到其他与筹资活动有关的现金\n", 1908 | " 0,000.00\n", 1909 | "\n", 1910 | "筹资活动现金流入小计\n", 1911 | " 00. 000.00\n", 1912 | "\n", 1913 | "偿还债务支付的现金\n", 1914 | " 99,00,000o\n", 1915 | "\n", 1916 | "分配股利、利润或偿付利息支付的现金\n", 1917 | " 3,797,21\n", 1918 | "\n", 1919 | "支付其他与筹资活动有关的现金\n", 1920 | " 8000795\n", 1921 | "\n", 1922 | "筹资活动现金流出小计\n", 1923 | " 100,391,121.32\n", 1924 | "\n", 1925 | "筹资活动产生的现金流量净额\n", 1926 | " 159, 602, 578.68\n", 1927 | "\n", 1928 | "四、汇率变动对现金及现金等价物的影响\n", 1929 | " 272, 076.85\n", 1930 | "\n", 1931 | "五、现金及现金等价物净增加额\n", 1932 | " 64, 717, 007. 35\n", 1933 | "\n", 1934 | "加:期初现金及现金等价物余额\n", 1935 | " 114, 128, 460.89\n", 1936 | "\n", 1937 | "六、期末现金及现金等价物余额\n", 1938 | " 178, 845, 468. 24\n", 1939 | "\n", 1940 | "法定代表人:\n", 1941 | " 主管会计工作的负责人:\n", 1942 | "```\n", 1943 | "\n", 1944 | "\n" 1945 | ] 1946 | } 1947 | ], 1948 | "source": [ 1949 | "rst = tree_flat(tree)\n", 1950 | "print(rst)" 1951 | ] 1952 | } 1953 | ], 1954 | "metadata": { 1955 | "kernelspec": { 1956 | "display_name": "Python 3", 1957 | "language": "python", 1958 | "name": "python3" 1959 | }, 1960 | "language_info": { 1961 | "codemirror_mode": { 1962 | "name": "ipython", 1963 | "version": 3 1964 | }, 1965 | "file_extension": ".py", 1966 | "mimetype": "text/x-python", 1967 | "name": "python", 1968 | "nbconvert_exporter": "python", 1969 | "pygments_lexer": "ipython3", 1970 | "version": "3.9.6" 1971 | } 1972 | }, 1973 | "nbformat": 4, 1974 | "nbformat_minor": 2 1975 | } 1976 | -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- 1 | # EasyDoc API Examples 2 | 3 | This module provides example scripts for interacting with the EasyDoc API. It demonstrates how to: 4 | 1. Upload files for parsing. 5 | 2. Retrieve parsing results. 6 | 7 | ## Prerequisites 8 | 9 | 1. **API Key**: Obtain your API key from the [EasyDoc API Key Management Page](https://platform.easydoc.sh/api-keys). 10 | 2. **Python**: Install Python 3.7+ on your machine. 11 | 12 | 13 | ## Setup 14 | 15 | 1. Clone this repository to your local machine: 16 | ```bash 17 | git clone https://github.com/easydoc-ai/easydoc.git 18 | cd easydoc/examples 19 | ``` 20 | 21 | 2. Replace the placeholder `your-api-key` in `upload_and_parse.py` with your actual API key. 22 | 23 | 3. Ensure the file you want to parse is accessible on your local machine. 24 | 25 | ## Usage 26 | 27 | ### Upload and Parse a File 28 | 29 | Run the script with the following command: 30 | ```bash 31 | python upload_and_parse.py 32 | ``` 33 | 34 | This script will: 35 | 1. Upload a file to create a parsing task. 36 | 2. Poll the API to check the parsing task status. 37 | 3. Print the parsing result once the task is complete. 38 | 39 | ### Example Output 40 | 41 | ```bash 42 | 43 | Uploading path/to/your/document.pdf... 44 | File uploaded successfully. Task ID: abc123xyz 45 | Fetching result for Task ID: abc123xyz... 46 | Task status: PENDING. Retrying in 5 seconds... 47 | Task status: PROGRESSING. Retrying in 5 seconds... 48 | Parsing completed successfully. 49 | Parsing Result: 50 | { 51 | "file_name":"document.pdf", 52 | // document data 53 | } 54 | ``` 55 | 56 | ## Notes 57 | 58 | - Use the `mode` parameter (`lite`, `pro`, `premium`) to control parsing speed and accuracy. 59 | - Adjust `start_page` and `end_page` to parse specific sections of the document. 60 | 61 | ## Reference Documentation 62 | 63 | - [POST /api/v1/parse](docs/api-reference/parse.md) 64 | - [GET /api/v1/parse/{task_id}/result](docs/api-reference/parse_result.md) 65 | 66 | -------------------------------------------------------------------------------- /examples/upload_and_parse.py: -------------------------------------------------------------------------------- 1 | import requests 2 | import time 3 | 4 | # API Base URL 5 | BASE_URL = "https://api.easydoc.sh/api/v1" 6 | 7 | # Your API Key (replace with your own key) 8 | API_KEY = "your-api-key" 9 | 10 | # Upload a file and create a parsing task 11 | def upload_file(file_path, mode="lite", start_page=None, end_page=None): 12 | url = f"{BASE_URL}/parse" 13 | headers = {"api-key": API_KEY} 14 | files = {"file": open(file_path, "rb")} 15 | data = {"mode": mode} 16 | 17 | if start_page: 18 | data["start_page"] = start_page 19 | if end_page: 20 | data["end_page"] = end_page 21 | 22 | print(f"Uploading {file_path}...") 23 | response = requests.post(url, headers=headers, files=files, data=data) 24 | if response.status_code == 200 and response.json().get("success"): 25 | task_id = response.json()["data"]["task_id"] 26 | print(f"File uploaded successfully. Task ID: {task_id}") 27 | return task_id 28 | else: 29 | print(f"Error uploading file: {response.json()}") 30 | return None 31 | 32 | # Get the parsing result 33 | def get_parse_result(task_id): 34 | url = f"{BASE_URL}/parse/{task_id}/result" 35 | headers = {"api-key": API_KEY} 36 | 37 | print(f"Fetching result for Task ID: {task_id}...") 38 | while True: 39 | response = requests.get(url, headers=headers) 40 | if response.status_code == 200: 41 | data = response.json() 42 | if data["success"]: 43 | status = data["data"]["task_status"] 44 | if status == "SUCCESS": 45 | print("Parsing completed successfully.") 46 | return data["data"]["task_result"] 47 | elif status in ["PENDING", "PROGRESSING"]: 48 | print(f"Task status: {status}. Retrying in 5 seconds...") 49 | time.sleep(5) 50 | else: 51 | print(f"Task failed with status: {status}.") 52 | return None 53 | else: 54 | print(f"Error: {data['errMessage']}") 55 | return None 56 | else: 57 | print(f"Error fetching result: {response.status_code}") 58 | return None 59 | 60 | if __name__ == "__main__": 61 | # Replace with the path to your file 62 | file_path = "path/to/your/document.pdf" 63 | 64 | # Step 1: Upload the file 65 | task_id = upload_file(file_path, mode="lite", start_page=1, end_page=None) 66 | 67 | # Step 2: Retrieve the parsing result 68 | if task_id: 69 | result = get_parse_result(task_id) 70 | if result: 71 | print("Parsing Result:") 72 | print(result) 73 | --------------------------------------------------------------------------------