文档
测试

合同下载

POST
http://127.0.0.1:8181/staff/contract/contractDownload

请求参数

参数名
类型
描述
必填
orderId
string
合同id,示例:1605465203756826624
必填
orderCode
string
合同代码,示例:HT202212216184
必填
businessId
string
模板id,示例:19
必填

响应参数

参数名
类型
描述
必填
fileUrl
string
文件url
必填

说明 / 示例

**请求报文** ```json { "orderId": "1605465203756826624", "orderCode": "HT202212216184", "businessId":"19" } ``` --- **响应报文** ```json { "code": "0", "msg": "成功", "detail": null, "result": { "fileUrl": "http://82.157.166.137:8181/profile/contract/2022/12/27/1605465203756826624.docx", "pdfUrl": "http://82.157.166.137:8181/profile/contract/2022/12/27/1605465203756826624.pdf" }, "traceId": "e2477346b3e6440babda7f457e08f7b7", "success": true } ```