## excel转word
**收费方式**:`每次消耗1点`
**接口地址**:`/api/v1/file/operation/excel-to-word`
**请求方式**:`POST`
**请求数据类型**:`application/json`
**响应数据类型**:`*/*`
**接口描述**:<p>示例网站:<a href="https://tool.noteo.cn">https://tool.noteo.cn</a></p>
**请求示例**:
```javascript
{
"author": "",
"date_format": "yyyy 年 MM 月",
"import_file_path": "",
"template_file_path": ""
}
```
**请求参数**:
**请求参数**:
| 参数名称 | 参数说明 | 请求类型 | 是否必须 | 数据类型 | schema |
| -------- | -------- | ----- | -------- | -------- | ------ |
|excelToWordPO|excelToWordPO|body|true|ExcelToWordPO|ExcelToWordPO|
|  author|作者||false|string||
|  date_format|日期格式, 默认:yyyy 年 MM 月||false|string||
|  import_file_path|导入文件路径||false|string||
|  template_file_path|模板文件路径||false|string||
**响应状态**:
| 状态码 | 说明 | schema |
| -------- | -------- | ----- |
|200|OK|Result«string»|
|201|Created||
|401|Unauthorized||
|403|Forbidden||
|404|Not Found||
**响应参数**:
| 参数名称 | 参数说明 | 类型 | schema |
| -------- | -------- | ----- |----- |
|data||string||
|error_code|响应码 (非0即异常)|integer(int32)|integer(int32)|
|message|响应消息|string||
|meta||string||
**响应示例**:
```javascript
{
"data": "",
"error_code": 0,
"message": "success",
"meta": ""
}
```