企业财税报告V3(详版) - 天远API
企业相关产品编号:QYGLR8N4
产品描述:贷前报告V3贷前报告V3贷前报告V3
标签:
应用类型:API接口
数据优势:对接国家部委,权威,准确,合法数据更新及时,数据质量高
产品价格:39.8 元/次
优惠政策:量大可优惠,充值优惠:联系客服咨询
API 接入流程
简单四步,快速接入天远API服务
1
注册账号
在天远API平台注册账号,完成实名认证,获取访问权限。
2
开通服务
在控制台选择需要的API服务,完成开通和配置,获取调用凭证。
3
集成调用
参考接口文档,在您的应用中集成API代码,实现功能对接。
4
测试上线
进行充分测试,确认无误后正式上线使用。如需帮助,随时联系客服。
技术支持
如需技术支持或有任何问题,欢迎联系我们的专业团队
贷前报告V3贷前报告V3贷前报告V3
请求端点
请求方式:POST
接口地址:https://api.tianyuanapi.com/api/v1/QYGLR8N4?t=13位时间戳
基础信息
⏳
正在转换内容...
## 请求头
| 字段名 | 类型 | 必填 | 描述 |
|--------|------|------|------|
| Access-Id | string | 是 | 账号的 Access-Id |
对于业务请求参数
通过加密后得到 Base64 字符串,将其放入到请求体中,字段名为 `data`,以此方式进行传参。
```json
{
"data": "xxxx(base64)"
}
```
对接响应得到的公共参数
```json
{
"code": "int",
"message": "string",
"transaction_id": "string", // 流水号
"data": "string"
}
```
**data** 字段为加密的数据,需要解密后查看。
## 加密和解密机制
账户获得的密钥(**Access Key**)是一个 16 进制字符串,使用 AES-128 加密算法。
### 加密过程:
- 加密模式:**AES-CBC 模式**。
- 密钥长度:**128 位(16 字节)**。
- 填充方式:**PKCS7 填充**。
- **IV(初始化向量)**:IV 长度为 16 字节(128 位),每次加密时随机生成。
- 加密后,将 **IV** 和密文拼接在一起进行传输。
- 最后,将拼接了 IV 的密文通过 **Base64 编码**,方便在网络或文件中传输。
### 解密过程:
- 解密时,首先从 Base64 解码后的数据中提取前 16 字节作为 **IV**。
- 然后使用提取的 **IV**,通过 AES-CBC 模式解密剩余部分的密文。
- 解密后去除 **PKCS7 填充**,即可得到原始明文。
请求参数
⏳
正在转换内容...
## 申请报告:加密前的业务参数
`POST https://api.haiyudata.com/api/v1/QYGLWFQ3`
| 参数 | 中文名称 | 类型 | 必填 | 说明 |
| --- | --- | --- | --- | --- |
| out_order_no | 业务订单号 | string | 是 | 客户系统中的唯一业务订单号,最长 128 字节;回调原样返回。同账号同产品下用于幂等识别 |
| ent_code | 企业统一信用代码 | string | 条件必填 | 与 ent_name 至少填写一项,最长 64 字节;同时填写时须属于同一企业 |
| ent_name | 企业名称 | string | 条件必填 | 企业全称,与 ent_code 至少填写一项,最长 255 字节;仅填名称也可申请 |
| notify_url | 异步结果回调地址 | string | 是 | 公网 HTTPS 地址,最长 2048 字节;同时接收 report 和 pdf 两类结果通知 |
| return_url | 授权结束返回地址 | string | 否 | 浏览器跳转地址,HTTPS,最长 2048 字节;省略时使用平台默认结束页;不是报告回调地址 |
URL 不允许包含用户名密码或 `#fragment`。业务参数不要包含未定义字段。旧字段 `taxpayer_id`、`company_name` 仅用于兼容,新接入统一使用 `ent_code`、`ent_name`;新旧字段同时传且取值冲突会返回参数错误。
```json
{
"out_order_no": "YOUR-ORDER-20260912-001",
"ent_name": "示例科技有限公司",
"notify_url": "https://your-domain.example/callbacks/hyapi"
}
```
以上为加密前内容。实际 HTTP 请求体为 `{"data":"Base64编码的IV与AES密文"}`,不是直接提交这些业务字段。示例域名和企业名称均为占位值,需替换后使用。
## 主动查询:加密前的业务参数
`POST https://api.haiyudata.com/api/v1/QYGLWFQ3/query`
| 参数 | 中文名称 | 类型 | 必填 | 说明 |
| --- | --- | --- | --- | --- |
| out_order_no | 业务订单号 | string | 条件必填 | 原申请时填写的业务订单号,与 order_id 至少一项,最长 128 字节 |
| order_id | 平台订单号 | string | 条件必填 | 原申请响应中的 order_id,与 out_order_no 至少一项,最长 64 字节 |
| include_report | 是否返回报告及 PDF 内容 | boolean | 否 | 默认 true;false 仅返回状态及进度,不返回 report 和 pdf 内容 |
```json
{
"out_order_no": "YOUR-ORDER-20260912-001",
"include_report": true
}
```
两种订单标识都传时必须指向同一个订单。只能查询当前 AccessId、当前产品的订单。查询使用同一套请求头及 AES 加密,`include_report` 应传 JSON 布尔值,不要传字符串 `"true"`。
响应字段
⏳
正在转换内容...
## 申请及查询的外层响应
| 字段 | 中文名称 | 类型 | 说明 |
| --- | --- | --- | --- |
| code | 业务状态码 | integer | 0 表示本次申请或查询成功;不表示报告已经完成 |
| message | 状态说明 | string | 本次调用结果说明 |
| transaction_id | 调用流水号 | string | 本次 API 调用流水;与结果回调中的通知流水用途不同 |
| data | 加密业务结果 | string | 使用本账号 HYAPI 密钥解密;失败时先查看 code、message |
## 申请响应:data 解密后
| 字段 | 中文名称 | 类型 | 说明 |
| --- | --- | --- | --- |
| order_id | 平台订单号 | string | HYAPI 生成,可用于主动查询 |
| out_order_no | 业务订单号 | string | 申请时客户填写的业务订单号 |
| authorize_url | 企业授权链接 | string | 直接交给企业用户打开;保留完整 URL,不自行改写参数 |
| status | 订单状态 | string | 新订单为 awaiting_authorization;重复申请返回原订单当前状态 |
## 查询响应:data 解密后
| 字段 | 中文名称 | 类型 | 说明 |
| --- | --- | --- | --- |
| order_id | 平台订单号 | string | 申请返回的 order_id |
| out_order_no | 业务订单号 | string | 客户业务订单号 |
| product_code | 产品编码 | string | QYGLWFQ3 |
| status | 订单状态 | string | awaiting_authorization 等待授权;collecting 采集或处理中;succeeded 报告已成功处理;failed 订单失败 |
| status_message | 订单状态说明 | string | 当前状态的中文说明 |
| authorized | 是否已收到授权成功 | boolean | 通知可能乱序,报告是否完成仍以 report_ready 为准 |
| report_ready | JSON 报告是否可用 | boolean | true 表示完整报告已保存并完成结算 |
| generation_status | 报告生成进度 | string | waiting 尚无生成任务;pending 待执行或重试;requested 已请求生成、等待加工通知;report_processed 已收到加工完成通知;failed 生成请求失败 |
| generation_error | 报告生成错误 | string | 有错误时返回;阶段失败原因,最终订单结果见 status |
| progress.data_ready | 数据准备进度 | boolean | 是否收到 32 成功批次 |
| progress.report_processed | 报告加工进度 | boolean | 是否收到 45 成功批次;尚需平台成功获取完整报告 |
| progress.pdf_ready | PDF 加工进度 | boolean | 是否收到 46 成功批次;尚需平台成功获取 PDF 信息 |
| pdf_ready | PDF 信息是否可用 | boolean | JSON 报告成功处理结算且同批次 PDF 信息已取回时为 true |
| pdf_status | PDF 获取状态 | string | waiting 等待;pending 正在获取或重试;ready 已获取;failed 获取失败 |
| pdf_error | PDF 获取错误 | string | PDF 获取失败时返回,不代表 JSON 报告失败 |
| pdf | PDF 信息 | object | pdf_ready=true 且 include_report=true 时返回 |
| pdf.reportPdfUrl | PDF 报告地址 | string | 数据源返回的 PDF URL,保留原地址;平台不在 JSON 中返回 PDF 二进制 |
| notify_status | 报告通知状态 | string | waiting 尚未生成通知;pending 待发送或重试;delivered 客户已返回 2xx;exhausted 重试耗尽 |
| notify_attempts | 报告通知尝试次数 | integer | report 通知已尝试发送次数 |
| pdf_notify_status | PDF 通知状态 | string | waiting / pending / delivered / exhausted,含义同报告通知 |
| pdf_notify_attempts | PDF 通知尝试次数 | integer | 与报告通知分别统计 |
| failure_message | 订单失败原因 | string | 订单失败时返回 |
| created_at | 订单创建时间 | string | RFC3339 时间字符串,包含时区 |
| report | 完整 JSON 报告 | object | report_ready=true 且 include_report=true 时返回;模块字段见下方字典 |
`include_report=false` 时仍返回就绪标志,但省略 `report` 和 `pdf`。`status=failed` 的查询也可能返回外层 `code=0`,因为查询本身成功执行。通知重试耗尽不影响读取已就绪的报告。
## 异步通知外层字段
| 字段 | 中文名称 | 类型 | 说明 |
| --- | --- | --- | --- |
| code | 结果状态码 | integer | report 成功为 0、失败为 2001;pdf 成功为 0 |
| message | 结果说明 | string | 成功说明或失败原因 |
| out_order_no | 业务订单号 | string | 原申请客户单号,两类通知一致 |
| transaction_id | 通知流水号 | string | 同一通知重试不变;report 与 pdf 各自不同;接收端按此字段去重 |
| product_code | 产品编码 | string | QYGLWFQ3 |
| event_type | 通知类型 | string | report 或 pdf;历史缺省值按 report 处理 |
| data | 加密通知数据 | string | report 成功时为完整报告;pdf 成功时为含 reportPdfUrl 的对象;report 失败时为空字符串 |
PDF 通知的 `data` 解密后直接读取 `reportPdfUrl`,没有 `pdf` 外层。报告通知的 `data` 解密后直接读取 `coverage` 等模块,没有 `report` 外层。主动查询则分别在解密结果的 `pdf` 和 `report` 字段下返回。
## V3 报告业务字段字典
以下字典依据已提供的《贷前报告V3》2026-06-12 版本响应参数整理,按业务模块分组。字段路径相对于**已解密的报告根对象**:例如回调中为 `coverage.companyName`,主动查询中为 `report.coverage.companyName`。表中的数组子字段指每一个数组元素的字段。
平台保留数据源报告字段及值类型,不保证每个企业都具有全部字段;请兼容缺省、null、空对象或空数组。金额、比例、周期等单位按字段中文说明处理,不将所有数字字符串强制转为同一种单位。原文档存在提取换行、类型或描述不一致时,应以实际响应为准;此处仅清理字段路径中的提取空格,不推测或重命名字段。
### 封面内容 (coverage)
| 字段路径 | 中文说明 | 文档类型 |
| --- | --- | --- |
| `coverage` | 封面内容 | Object |
| `coverage.taxpayerId` | 纳税人识别号 | String |
| `coverage.reportNo` | 报告编号 | String |
| `coverage.reportDate` | 报告检测时间 | String |
| `coverage.companyName` | 公司名称 | String |
| `coverage.period` | 取值周期 | String |
| `coverage.authTime` | 授权日期 | String |
### 企业信用风险概况 (corporateCreditRisk)
| 字段路径 | 中文说明 | 文档类型 |
| --- | --- | --- |
| `corporateCreditRisk` | 企业信用风险概况 | Object |
| `corporateCreditRisk.basicMatter` | 基本情况 | Object |
| `corporateCreditRisk.basicMatter.ysieYearly` | 成立时长(年) | Number |
| `corporateCreditRisk.basicMatter.recPerHavPartEvaTcr` | 最近期参评纳税信用等级 | String |
| `corporateCreditRisk.basicMatter.pbad24mLegReprModiTimes` | 24个月内法定代表人变更次数(次)--0/1/2/3 | Integer |
| `corporateCreditRisk.basicMatter.pbad24mStohoModiTimes` | 24个月内股东变更次数(次)--0/1/2/3 | Integer |
| `corporateCreditRisk.basicMatter.socialPersonnel` | 社保缴费人数 | Integer |
| `corporateCreditRisk.basicMatter.las3yTcrTcpEyList` | 近三年信用等级列表 | Array |
| `corporateCreditRisk.basicMatter.las3yTcrTcpEyList.year` | 年份 | String |
| `corporateCreditRisk.basicMatter.las3yTcrTcpEyList.creditGrade` | 信用等级 | String |
| `corporateCreditRisk.basicMatter.las3yTcrTcpEyList.score` | 评分 | String |
| `corporateCreditRisk.basicMatter.unEmEiiNumInsuPers` | 社保缴费人数(新) | Integer |
| `corporateCreditRisk.businessRisk` | 经营风险 | Object |
| `corporateCreditRisk.businessRisk.recPerTotAss` | 近一期总资产(万元) | Number |
| `corporateCreditRisk.businessRisk.recPerOwnEqu` | 近一期净资产(万元) | Number |
| `corporateCreditRisk.businessRisk.lastYSallnc` | 上年度销售收入(万元) | Number |
| `corporateCreditRisk.businessRisk.lastYLoaAmt` | 上年度借款金额(万元) | Number |
| `corporateCreditRisk.businessRisk.las12mManaCont` | 经营连续性--较好/正常/较差 | String |
| `corporateCreditRisk.businessRisk.las12mCusSta` | 客户稳定性--较好/正常/较差 | String |
| `corporateCreditRisk.businessRisk.las12mCusConc` | 客户集中度--集中I型/集中II型/分散I型/分散II型 | String |
| `corporateCreditRiskbusinessRisk.las12mPurSalProp` | 近12个月进销项比例 | String |
| `corporateCreditRiskbusinessRisk.redInkVoidInvRatiVatSalLas12m` | 近12个月红废金额比例(%) | String |
| `corporateCreditRiskbusinessRisk.las3mManaAct` | 近3个月经营活跃性--活跃/正常/不活跃 | String |
| `corporateCreditRiskbusinessRisk.taxPrev12mthsVatburdenRate` | 近12个月增值税税负率(%) | Number |
| `corporateCreditRiskbusinessRisk.taxPrev12mthsltburdenContributionRate` | 近12个月所得税税负率(%) | Number |
| `corporateCreditRisk.financialAnalysis` | 财务分析 | Object |
| `corporateCreditRisk.financialAnalysis.las3ySalIncCompRate` | 近3年销售收入复合增长率(%) | String |
| `corporateCreditRisk.financialAnalysis.latyarAssetDebtRate` | 上年度资产负债率(%) | String |
| `corporateCreditRisk.financialAnalysis.las3yOwnEquCompRate` | 近3年净资产复合增长率(%) | String |
| `corporateCreditRisk.financialAnalysis.las3yNetProfCompRate` | 近3年净利润复合增长率(%) | String |
| `corporateCreditRisk.financialAnalysis.lastYGpm` | 上年度毛利率(%) | String |
| `corporateCreditRisk.financialAnalysis.las3yGpmCompRate` | 近3年毛利率复合增长率(%) | String |
| `corporateCreditRisk.financialAnalysis.las3yLoaDiff` | 近3年借款差额(万元) | Number |
| `corporateCreditRisk.financialAnalysis.lastYLoaSalProp` | 上年度借贷销售比(%) | String |
| `corporateCreditRisk.creditRisk` | 信用风险 | Object |
| `corporateCreditRisk.creditRisk.taxCurTaAmt` | 当前欠税金额(元)--0/500/1000 | Number |
| `corporateCreditRisk.creditRisk.las36mTaxArrMt1000Times` | 近36个月欠税>1000元的次数(次)--0/1/2/3 | Integer |
| `corporateCreditRisk.creditRisk.curWhetNotDisBeExec` | 当前是否失信被执行--是/否 | String |
| `corporateCreditRisk.creditRisk.historyDisBeExecTimes` | 历史失信被执行次数(次)--0/1/2/3 | Integer |
| `corporateCreditRisk.creditRisk.curWhetNotAbnOper` | 当前是否经营异常--是/否 | String |
| `corporateCreditRisk.creditRisk.curWhetNotSVioLawRegu` | 当前是否严重违法--是/否 | String |
| `corporateCreditRisk.creditRisk.las36mAdmSanTimes` | 36个月内行政处罚次数(次)--0/1/2/3 | Integer |
| `corporateCreditRisk.creditRisk.curWhetNotEquFre` | 当前是否股权冻结--是/否 | String |
| `corporateCreditRisk.creditRisk.las36mEntFilTwigs` | 36个月内企业立案数(件);0/1/2/3 | Integer |
| `corporateCreditRisk.creditRisk.curDefenOpenCasTwigs` | 当前被告未结案案件数(件) | Integer |
| `corporateCreditRisk.certificateList` | 资质证书 | Array |
| `corporateCreditRisk.certificateList.certNo` | 证书编号 | String |
| `corporateCreditRisk.certificateList.certType` | 证书类型 | String |
| `corporateCreditRisk.certificateList.startDate` | 证书开始日期 | String |
| `corporateCreditRisk.certificateList.endDate` | 证书结束日期 | String |
| `corporateCreditRisk.qualificationList` | 企业荣誉 | Array |
| `corporateCreditRisk.qualificationList.quaType` | 科技类型 | String |
| `corporateCreditRisk.qualificationList.level` | 行政级别 | String |
| `corporateCreditRisk.qualificationList.year` | 认定年份 | String |
| `corporateCreditRisk.qualificationList.number` | 编码 | String |
| `corporateCreditRisk.qualificationList.validState` | 认定状态 | String |
| `corporateCreditRisk.qualificationList.validStart` | 有效期起始日期 | String |
| `corporateCreditRisk.qualificationList.validEnd` | 有效期终止日期 | String |
| `corporateCreditRisk.qualificationList.endDate` | 终止/撤销日期 | String |
### 企业基本信息 (companyBasicInformation)
| 字段路径 | 中文说明 | 文档类型 |
| --- | --- | --- |
| `companyBasicInformation` | 企业基本信息 | Object |
| `companyBasicInformation.industryBasicInformation` | 工商基础信息 | Object |
| `companyBasicInformation.industryBasicInformation.companyName` | 公司名称 | String |
| `companyBasicInformation.industryBasicInformation.taxpayerId` | 纳税人识别号 | String |
| `companyBasicInformation.industryBasicInformation.legalPersonName` | 法人代表 | String |
| `companyBasicInformation.industryBasicInformation.openingDate` | 成立时间 | String |
| `companyBasicInformation.industryBasicInformation.registerCapital` | 注册资本 | Number |
| `companyBasicInformation.industryBasicInformation.registerAddress` | 注册地址 | String |
| `companyBasicInformation.industryBasicInformation.registeredType` | 公司类型 | String |
| `companyBasicInformation.industryBasicInformation.industryType` | 行业类别 | String |
| `companyBasicInformation.industryBasicInformation.taxpayerType` | 纳税人类型 | String |
| `companyBasicInformation.industryBasicInformation.recPerHavPartEvaTcr` | 最近期参评纳税信用等级 | String |
| `companyBasicInformation.industryBasicInformation.employeesNumber` | 参保人数 | Integer |
| `companyBasicInformation.industryBasicInformation.businessScope` | 经营范围 | String |
| `companyBasicInformation.industryBasicInformation.operatingStatus` | 经营状态 | String |
| `companyBasicInformation.shareholderInfo` | 股权结构 | Array |
| `companyBasicInformation.shareholderInfo.stockName` | 股东名称 | String |
| `companyBasicInformation.shareholderInfo.actualController` | 实际控制人 | String |
| `companyBasicInformation.shareholderInfo.stockPercent` | 持股比例(%) | String |
| `companyBasicInformation.shareholderInfo.shouldCapi` | 认缴出资额(万元) | String |
| `companyBasicInformation.shareholderInfo.paidInAmomon` | 实缴出资额(万元) | String |
| `companyBasicInformation.member` | 主要人员结构 | Array |
| `companyBasicInformation.member.name` | 姓名 | String |
| `companyBasicInformation.member.position` | 职务 | String |
| `companyBasicInformation.associatedEnterprise` | 关联企业情况 | Array |
| `companyBasicInformation.associatedEnterprise.companyName` | 企业名称 | String |
| `companyBasicInformation.associatedEnterprise.contributionRatio` | 出资比例 | String |
| `companyBasicInformation.associatedEnterprise.associated` | 关联关系 | String |
| `companyBasicInformation.associatedEnterprise.registerCapital` | 注册资本 | String |
| `companyBasicInformation.associatedEnterprise.regCapitalCurrency` | 货币种类 | String |
| `companyBasicInformation.associatedEnterprise.legalPersonName` | 法定代表人 | String |
| `companyBasicInformation.associatedEnterprise.establishmentDate` | 成立日期 | String |
| `companyBasicInformation.associatedEnterprise.industry` | 所属行业 | String |
| `companyBasicInformation.branchOffice` | 分支机构 | Array |
| `companyBasicInformation.branchOffice.companyName` | 分支机构名称 | String |
| `companyBasicInformation.branchOffice.chargerPerson` | 负责人 | String |
| `companyBasicInformation.branchOffice.establishmentDate` | 成立日期 | String |
| `companyBasicInformation.branchOffice.status` | 状态 | String |
| `companyBasicInformation.changeInformation` | 变更信息 | Array |
| `companyBasicInformation.changeInformation.beforeInfo` | 变更前内容 | String |
| `companyBasicInformation.changeInformation.afterInfo` | 变更后内容 | String |
| `companyBasicInformation.changeInformation.changeDate` | 变更日期 | String |
| `companyBasicInformation.changeInformation.projectName` | 变更项目 | String |
### 企业经营情况 (businessOperation)
| 字段路径 | 中文说明 | 文档类型 |
| --- | --- | --- |
| `businessOperation` | 企业经营情况 | Object |
| `businessOperation.enterpriseInvoicing` | 企业开票情况 | Object |
| `businessOperation.enterpriseInvoicing.period` | 区间 | String |
| `businessOperation.enterpriseInvoicing.incomelnvoiceInformation` | 进项发票采集情况 | Object |
| `businessOperation.enterpriseInvoicing.incomelnvoiceInformationinvoiceCount` | 发票总份数(张) | Integer |
| `businessOperation.enterpriseInvoicing.incomelnvoiceInformation.yxAmt` | 有效发票总金额(万元) | Number |
| `businessOperation.enterpriseInvoicing.incomelnvoiceInformation.fetUnCusVoidInvEarDate` | 区间最早开票日期 | String |
| `businessOperationihentriselnvoicing.incomelnvoiceInformation.fetUnCusVoidInvRecDate` | 区间最晚开票日期 | String |
| `businessOperationihentriselnvoicing.incomelnvoiceInformation.fetUnCusVoidInvMaxInteDays` | 最大断票天数(天) | Integer |
| `businessOperationihentriselnvoicing.incomelnvoiceInformation.etyaUnOutInvFolioStopInvIntePeri` | 最大断票间隔期间 | String |
| `businessOperation.enterpriseInvoicing.outInvoiceInformation` | 销项发票采集情况 | Object |
| `businessOperation.enterpriseInvoicing.outInvoiceInformation.invoiceCount` | 发票总份数(张) | Integer |
| `businessOperation.enterpriseInvoicing.outInvoiceInformation.yxAmt` | 有效发票总金额(万元) | Number |
| `businessOperation.enterpriseInvoicing.outInvoiceInformation.hcAmt` | 红冲发票金额(万元) | Number |
| `businessOperation.enterpriseInvoicing.outInvoiceInformation.hcRate` | 红冲发票占比(%) | Number |
| `businessOperation.enterpriseInvoicing.outInvoiceInformation.zfAmt` | 正数作废发票金额(万元) | Number |
| `businessOperation.enterpriseInvoicing.outInvoiceInformation.zfRate` | 正数作废发票占比(%) | Number |
| `businessOperation.enterpriseInvoicing.outInvoiceInformation.fetUnSupVoidInvEarDate` | 区间最早开票日期 | String |
| `businessOperation.enterpriseInvoicing.outInvoiceInformation.fetUnSupVoidInvRecDate` | 区间最晚开票日期 | String |
| `businessOperation.enterpriseInvoicing.outInvoiceInformation.fetUnSupVoidInvMaxInteDays` | 最大断票天数(天) | Integer |
| `businessOperation.enterpriseInvoicing.outInvoiceInformation.etyaUnInInvFolioStopInvIntePeri` | 最大断票间隔期间 | String |
| `businessOperation.businessOverview` | 企业经营概述 | Object |
| `businessOperation.businessOverview.earVallnvDateThisMMonths` | 企业经营年限(年) | Number |
| `businessOperation.businessOverview.las3yTopSaleYear` | 近3年最高销售收入年份 | String |
| `businessOperation.businessOverview.las12mMainProCatPropList` | 近12个月主要产品品类及占比 | String |
| `businessOperation.businessOverview.las3yTopSaleProceed` | 近3年最高年销售收入(万元) | Number |
| `businessOperation.businessOverview.lastYInvSallInc` | 上年度开票销售收入(万元) | Number |
| `businessOperation.businessOverview.lastYAllTaxCatTaxPaid` | 上年度全税种纳税额(元) | Number |
| `businessOperation.businessOverview.fpPrev6mthsTotAmt` | 近6个月开票销售收入(万元) | Number |
| `businessOperation.businessOverview.las6mSalAmtChaTre` | 近6个月销售趋势 | String |
| `businessOperation.businessOverview.las12mOutValInvAmtExcTax` | 近12个月开票销售额的字段 | Number |
| `businessOperation.businessSaleStockTaxList` | 销售、采购及纳税规模 | Array |
| `businessOperation.businessSaleStockTaxList.year` | 年份 | String |
| `businessOperation.businessSaleStockTaxList.fpTotAmt` | 销售额(发票) | Number |
| `businessOperation.businessSaleStockTaxList.fpSupAmt` | 采购额(发票) | Number |
| `businessOperation.businessSaleStockTaxList.taxSaleTotAmt` | 纳税销售额 | Number |
| `businessOperation.businessSaleStockTaxList.taxTotPaidAmt` | 纳税总额 | Number |
| `businessOperation.invoiceGrowthRate` | 销售情况分析 | Array |
| `businessOperation.invoiceGrowthRate.year` | 年 | Integer |
| `businessOperation.invoiceGrowthRate.month` | 季度 | Integer |
| `businessOperation.invoiceGrowthRate.fpAmt` | 销售额/采购额 | Number |
| `businessOperation.invoiceGrowthRate.incRate` | 增长率(%) | Number |
| `businessOperation.enterpriseOperationAnalysis` | 企业经营分析 | Object |
| `businessOperation.enterpriseOperationAnalysis.etyaUnEqSalIncChaTre` | 季度销售收入变化趋势--A:持续增长型B:波动增长型C:直线平稳型D:波动平稳型E:波动下降型F:持续下降型G:大幅度波动型 | String |
| `businessOperation.enterpriseOperationAnalysis.las12mManaCont` | 经营连续性--较好/正常/较差 | String |
| `businessOperation.enterpriseOperationAnalysis.salOffSea` | 销售淡季--3月/5月/- | String |
| `businessOperation.enterpriseOperationAnalysis.bustSelSea` | 销售旺季--3月/5月/- | String |
| `businessOperation.enterpriseOperationAnalysis.las3mManaAct` | 近3个月经营活跃性--活跃/正常/不活跃 | String |
| `businessOperation.top10CustomerAnalysis` | 近12个月前十大客户 | Array |
| `businessOperation.top10CustomerAnalysis.companyName` | 客户名称 | String |
| `businessOperation.top10CustomerAnalysis.salesGoods` | 销售商品 | String |
| `businessOperation.top10CustomerAnalysis.fpAmt` | 销售金额(元) | Number |
| `businessOperation.top10CustomerAnalysis.fpAmtRate` | 占比(%) | Number |
| `businessOperation.top10CustomerAnalysis.cusProv` | 所在地 | String |
| `businessOperation.top10CustomerAnalysis.cusYoc` | 合作年限 | String |
| `businessOperation.top10CustomerAnalysis.association` | 关联关系 | String |
| `businessOperation.compareCustomerChangesLastThisYear` | 今年本期与去年同期的客户变动情况(今年和去年) | Object |
| `businessOperation.compareCustomerChangesLastThisYear.leftYear` | 年份(去年/前年) | Integer |
| `businessOperation.compareCustomerChangesLastThisYear.rightYear` | 年份(前年/大前年) | Integer |
| `businessOperation.compareCustomerChangesLastThisYear.change` | 变动详情 | Array |
| `businessOperation.compareCustomerChangesLastThisYear.change.companyName` | 公司名称 | String |
| `businessOperation.compareCustomerChangesLastThisYear.change.commodityName` | 商品名称 | String |
| `businessOperation.compareCustomerChangesLastThisYear.change.leftYear` | 年份(去年/前年) | Integer |
| `businessOperation.compareCustomerChangesLastThisYear.change.leftCustomer` | 去年/前年的客户情况 | Object |
| `businessOperation.compareCustomerChangesLastThisYear.change.leftCustomer.fpAmt` | 金额(元) | Number |
| `businessOperation.compareCustomerChangesLastThisYear.change.leftCustomer.fpAmtRate` | 占比(%) | Number |
| `businessOperation.compareCustomerChangesLastThisYear.change.leftCustomer.ranking` | 排名 | Integer |
| `businessOperation.compareCustomerChangesLastThisYear.change.rightYear` | 年份(前年/大前年) | Integer |
| `businessOperation.compareCustomerChangesLastThisYear.change.rightCustomer` | 前年/大前年客户情况 | Object |
| `businessOperation.compareCustomerChangesLastThisYear.change.rightCustomer.fpAmt` | 金额(元) | Number |
| `businessOperation.compareCustomerChangesLastThisYear.change.rightCustomer.fpAmtRate` | 占比(%) | Number |
| `businessOperation.compareCustomerChangesLastThisYear.change.rightCustomer.ranking` | 排名 | Integer |
| `businessOperation.compareCustomerChangesLastThisYear.change.changeTrend` | 变动趋势--不变/上升/下降 | String |
| `businessOperation.lastYearCustomerRanking` | 主要客户变动情况(去年和前年) | Object |
| `businessOperation.lastYearCustomerRanking.leftYear` | 年份(去年/前年) | Integer |
| `businessOperation.lastYearCustomerRanking.rightYear` | 年份(前年/大前年) | Integer |
| `businessOperation.lastYearCustomerRanking.change` | 变动详情 | Array |
| `businessOperation.lastYearCustomerRanking.change.companyName` | 公司名称 | String |
| `businessOperation.lastYearCustomerRanking.change.commodityName` | 商品名称 | String |
| `businessOperation.lastYearCustomerRanking.change.leftYear` | 年份(去年/前年) | Integer |
| `businessOperation.lastYearCustomerRanking.change.leftCustomer` | 去年/前年的客户情况 | Object |
| `businessOperation.lastYearCustomerRanking.change.leftCustomer.fpAmt` | 金额(元) | Number |
| `businessOperation.lastYearCustomerRanking.change.leftCustomer.fpAmtRate` | 占比(%) | Number |
| `businessOperation.lastYearCustomerRanking.change.leftCustomer.ranking` | 排名 | Integer |
| `businessOperation.lastYearCustomerRanking.change.rightYear` | 年份(前年/大前年) | Integer |
| `businessOperation.lastYearCustomerRanking.change.rightCustomer` | 前年/大前年客户情况 | Object |
| `businessOperation.lastYearCustomerRanking.change.rightCustomer.fpAmt` | 金额(元) | Number |
| `businessOperation.lastYearCustomerRanking.change.rightCustomer.fpAmtRate` | 占比(%) | Number |
| `businessOperation.lastYearCustomerRanking.change.rightCustomer.ranking` | 排名 | Integer |
| `businessOperation.lastYearCustomerRanking.change.changeTrend` | 变动趋势--不变/上升/下降 | String |
| `businessOperation.tyblCustomerRanking` | 主要客户变动情况(前年和大前年) | Object |
| `businessOperation.tyblCustomerRanking.leftYear` | 年份(去年/前年) | Integer |
| `businessOperation.tyblCustomerRanking.rightYear` | 年份(前年/大前年) | Integer |
| `businessOperation.tyblCustomerRanking.change` | 变动详情 | Array |
| `businessOperation.tyblCustomerRanking.change.companyName` | 公司名称 | String |
| `businessOperation.tyblCustomerRanking.change.commodityName` | 商品名称 | String |
| `businessOperation.tyblCustomerRanking.change.leftYear` | 年份(去年/前年) | Integer |
| `businessOperation.tyblCustomerRanking.change.leftCustomer` | 去年/前年的客户情况 | Object |
| `businessOperation.tyblCustomerRanking.change.leftCustomer.fpAmt` | 金额(元) | Number |
| `businessOperation.tyblCustomerRanking.change.leftCustomer.fpAmtRate` | 占比(%) | Number |
| `businessOperation.tyblCustomerRanking.change.leftCustomer.ranking` | 排名 | Integer |
| `businessOperation.tyblCustomerRanking.change.rightYear` | 年份(前年/大前年) | Integer |
| `businessOperation.tyblCustomerRanking.change.rightCustomer` | 前年/大前年客户情况 | Object |
| `businessOperation.tyblCustomerRanking.change.rightCustomer.fpAmt` | 金额(元) | Number |
| `businessOperation.tyblCustomerRanking.change.rightCustomer.fpAmtRate` | 占比(%) | Number |
| `businessOperation.tyblCustomerRanking.change.rightCustomer.ranking` | 排名 | Integer |
| `businessOperation.tyblCustomerRanking.change.changeTrend` | 变动趋势--不变/上升/下降 | String |
| `businessOperation.customerAnalysis` | 客户分析 | Object |
| `businessOperation.customerAnalysis.las12mCusConc` | 客户集中度--集中I型/集中II型/分散I型/分散II型 | String |
| `businessOperation.customerAnalysis.las12mCusSta` | 客户稳定性--较好/正常/较差 | String |
| `businessOperation.customerProvinceDistribution` | 客户地域(省市)分布饼图 | Array |
| `businessOperation.customerProvinceDistribution.province` | 省份/城市 | String |
| `businessOperation.customerProvinceDistribution.fpVldfpAmt` | 金额 | Number |
| `businessOperation.customerProvinceDistribution.fpVldfpAmtRate` | 占比 | Number |
| `businessOperation.customerCityDistribution` | 客户地域(城市)分布饼图 | Array |
| `businessOperation.customerCityDistribution.province` | 省份/城市 | String |
| `businessOperation.customerCityDistribution.fpVldfpAmt` | 金额 | Number |
| `businessOperation.customerCityDistribution.fpVldfpAmtRate` | 占比 | Number |
| `businessOperation.supplierProvinceDistribution` | 供应商地域(省市)分布饼图 | Array |
| `businessOperation.supplierProvinceDistribution.province` | 省份/城市 | String |
| `businessOperation.supplierProvinceDistribution.fpVldfpAmt` | 金额 | Number |
| `businessOperation.supplierProvinceDistribution.fpVldfpAmtRate` | 占比 | Number |
| `businessOperation.supplierCityDistribution` | 供应商地域(城市)分布饼图 | Array |
| `businessOperation.supplierCityDistribution.province` | 省份/城市 | String |
| `businessOperation.supplierCityDistribution.fpVldfpAmt` | 金额 | Number |
| `businessOperation.supplierCityDistribution.fpVldfpAmtRate` | 占比 | Number |
| `businessOperation.top10PurchaseProduct` | 近12个月前十大销售产品 | Array |
| `businessOperation.top10PurchaseProduct.productName` | 产品名称 | String |
| `businessOperation.top10PurchaseProduct.fpAmt` | 金额(元) | Number |
| `businessOperation.top10PurchaseProduct.fpAmtRate` | 占比(%) | Number |
| `businessOperation.top10PurchaseProduct.rank` | 排名 | Integer |
| `businessOperation.top10PurchaseProduct.lastYfpAmt` | 去年同期 金额(元) | Number |
| `businessOperation.top10PurchaseProduct.lastYFpAmtRate` | 去年同期 占比(%) | Number |
| `businessOperation.top10PurchaseProduct.lastYRank` | 去年同期 排名 | Integer |
| `businessOperation.productAnalysisVO` | 销售产品分析 | Object |
| `businessOperation.productAnalysisVO.las12mProRich` | 产品丰富度--稀少I型/稀少II型/丰富I型/丰富II型 | String |
| `businessOperation.productAnalysisVO.las12mProSta` | 产品稳定性--较好/正常/较差 | String |
| `businessOperation.invoicePurchasesGrowthRate` | 采购情况分析 | Array |
| `businessOperation.invoicePurchasesGrowthRate.year` | 年 | Integer |
| `businessOperation.invoicePurchasesGrowthRate.month` | 季度 | Integer |
| `businessOperation.invoicePurchasesGrowthRate.fpAmt` | 销售额/采购额 | Number |
| `businessOperation.invoicePurchasesGrowthRate.incRate` | 增长率(%) | Number |
| `businessOperation.top10SupplierAnalysis` | 近12个月前十大供应商 | Array |
| `businessOperation.top10SupplierAnalysis.supName` | 供应商名称 | String |
| `businessOperation.top10SupplierAnalysis.purchasingGoods` | 采购商品 | String |
| `businessOperation.top10SupplierAnalysis.supInvAmt` | 采购金额(元) | Number |
| `businessOperation.top10SupplierAnalysis.supInvAmtRate` | 占比(%) | Number |
| `businessOperation.top10SupplierAnalysis.supProv` | 所在地 | String |
| `businessOperation.top10SupplierAnalysis.association` | 关联关系 | String |
| `businessOperation.compareSupplierChangesLastThisYear` | 今年本期与去年同期的供应商变动情况(今年和去年) | Object |
| `businessOperation.compareSupplierChangesLastThisYear.leftYear` | 年份(去年/前年) | Integer |
| `businessOperation.compareSupplierChangesLastThisYear.rightYear` | 年份(前年/大前年) | Integer |
| `businessOperation.compareSupplierChangesLastThisYear.change` | 变动详情 | Array |
| `businessOperation.compareSupplierChangesLastThisYear.change.companyName` | 公司名称 | String |
| `businessOperation.compareSupplierChangesLastThisYear.change.commodityName` | 商品名称 | String |
| `businessOperation.compareSupplierChangesLastThisYear.change.leftYear` | 年份(去年/前年) | Integer |
| `businessOperation.compareSupplierChangesLastThisYear.change.leftCustomer` | 去年/前年的客户情况 | Object |
| `businessOperation.compareSupplierChangesLastThisYear.change.leftCustomer.fpAmt` | 金额(元) | Number |
| `businessOperation.compareSupplierChangesLastThisYear.change.leftCustomer.fpAmtRate` | 占比(%) | Number |
| `businessOperation.compareSupplierChangesLastThisYear.change.leftCustomer.ranking` | 排名 | Integer |
| `businessOperation.compareSupplierChangesLastThisYear.change.rightYear` | 年份(前年/大前年) | Integer |
| `businessOperation.compareSupplierChangesLastThisYear.change.rightCustomer` | 前年/大前年客户情况 | Object |
| `businessOperation.compareSupplierChangesLastThisYear.change.rightCustomer.fpAmt` | 金额(元) | Number |
| `businessOperation.compareSupplierChangesLastThisYear.change.rightCustomer.fpAmtRate` | 占比(%) | Number |
| `businessOperation.compareSupplierChangesLastThisYear.change.rightCustomer.ranking` | 排名 | Integer |
| `businessOperation.compareSupplierChangesLastThisYear.change.changeTrend` | 变动趋势--不变/上升/下降 | String |
| `businessOperation.lastYearSupplierRanking` | 主要供应商变动情况(去年和前年) | Object |
| `businessOperation.lastYearSupplierRanking.leftYear` | 年份(去年/前年) | Integer |
| `businessOperation.lastYearSupplierRanking.rightYear` | 年份(前年/大前年) | Integer |
| `businessOperation.lastYearSupplierRanking.change` | 变动详情 | Array |
| `businessOperation.lastYearSupplierRanking.change.companyName` | 公司名称 | String |
| `businessOperation.lastYearSupplierRanking.change.commodityName` | 商品名称 | String |
| `businessOperation.lastYearSupplierRanking.change.leftYear` | 年份(去年/前年) | Integer |
| `businessOperation.lastYearSupplierRanking.change.leftCustomer` | 去年/前年的客户情况 | Object |
| `businessOperation.lastYearSupplierRanking.change.leftCustomer.fpAmt` | 金额(元) | Number |
| `businessOperation.lastYearSupplierRanking.change.leftCustomer.fpAmtRate` | 占比(%) | Number |
| `businessOperation.lastYearSupplierRanking.change.leftCustomer.ranking` | 排名 | Integer |
| `businessOperation.lastYearSupplierRanking.change.rightYear` | 年份(前年/大前年) | Integer |
| `businessOperation.lastYearSupplierRanking.change.rightCustomer` | 前年/大前年客户情况 | Object |
| `businessOperation.lastYearSupplierRanking.change.rightCustomer.fpAmt` | 金额(元) | Number |
| `businessOperation.lastYearSupplierRanking.change.rightCustomer.fpAmtRate` | 占比(%) | Number |
| `businessOperation.lastYearSupplierRanking.change.rightCustomer.ranking` | 排名 | Integer |
| `businessOperation.lastYearSupplierRanking.change.changeTrend` | 变动趋势--不变/上升/下降 | String |
| `businessOperation.tyblSupplierRanking` | 主要供应商变动情况(前年和大前年) | Object |
| `businessOperation.tyblSupplierRanking.leftYear` | 年份(去年/前年) | Integer |
| `businessOperation.tyblSupplierRanking.rightYear` | 年份(前年/大前年) | Integer |
| `businessOperation.tyblSupplierRanking.change` | 变动详情 | Array |
| `businessOperation.tyblSupplierRanking.change.companyName` | 公司名称 | String |
| `businessOperation.tyblSupplierRanking.change.commodityName` | 商品名称 | String |
| `businessOperation.tyblSupplierRanking.change.leftYear` | 年份(去年/前年) | Integer |
| `businessOperation.tyblSupplierRanking.change.leftCustomer` | 去年/前年的客户情况 | Object |
| `businessOperation.tyblSupplierRanking.change.leftCustomer.fpAmt` | 金额(元) | Number |
| `businessOperation.tyblSupplierRanking.change.leftCustomer.fpAmtRate` | 占比(%) | Number |
| `businessOperation.tyblSupplierRanking.change.leftCustomer.ranking` | 排名 | Integer |
| `businessOperation.tyblSupplierRanking.change.rightYear` | 年份(前年/大前年) | Integer |
| `businessOperation.tyblSupplierRanking.change.rightCustomer` | 前年/大前年客户情况 | Object |
| `businessOperation.tyblSupplierRanking.change.rightCustomer.fpAmt` | 金额(元) | Number |
| `businessOperation.tyblSupplierRanking.change.rightCustomer.fpAmtRate` | 占比(%) | Number |
| `businessOperation.tyblSupplierRanking.change.rightCustomer.ranking` | 排名 | Integer |
| `businessOperation.tyblSupplierRanking.change.changeTrend` | 变动趋势--不变/上升/下降 | String |
| `businessOperation.top10SaleProduct` | 近12个月前十大采购产品 | Array |
| `businessOperation.top10SaleProduct.productName` | 产品名称 | String |
| `businessOperation.top10SaleProduct.fpAmt` | 金额(元) | Number |
| `businessOperation.top10SaleProduct.fpAmtRate` | 占比(%) | Number |
| `businessOperation.top10SaleProduct.rank` | 排名 | Integer |
| `businessOperation.top10SaleProduct.lastYfpAmt` | 去年同期金额(元) | Number |
| `businessOperation.top10SaleProduct.lastYFpAmtRate` | 去年同期占比(%) | Number |
| `businessOperation.top10SaleProduct.lastYRank` | 去年同期排名 | Integer |
| `businessOperation.compareTaxPayment` | 纳税情况对比图(三年一期) | Array |
| `businessOperation.compareTaxPayment.year` | 年份 | Integer |
| `businessOperation.compareTaxPayment.vatAmount` | 增值税纳税额(元) | Number |
| `businessOperation.compareTaxPayment.enterpriseIncomeTax` | 企业所得税纳税额(元) | Number |
| `businessOperation.vatArrearsTax` | 欠税信息 | Array |
| `businessOperation.vatArrearsTax.projectName` | 征收项目 | String |
| `businessOperation.vatArrearsTax.beginDate` | 所属时期起 | String |
| `businessOperation.vatArrearsTax.endDate` | 所属时期止 | String |
| `businessOperation.vatArrearsTax.paymentPeriodDate` | 缴款期限 | String |
| `businessOperation.vatArrearsTax.paymentDate` | 缴纳日期 | String |
| `businessOperation.vatArrearsTax.taxPayable` | 应缴税款(元) | Number |
| `businessOperation.vatArrearsTax.taxPaid` | 已缴税款(元) | Number |
| `businessOperation.vatArrearsTax.supplementTaxAmount` | 应补税额(元) | Number |
| `businessOperation.vatArrearsTax.taxStatus` | 税款状态 | String |
| `businessOperation.taxAnalysis` | 纳税分析 | Object |
| `businessOperation.taxAnalysis.las36mTaxRele` | 近36个月税收相关性--极强/强相关/中等程度相关/弱相关/极弱相关或无相关 | String |
| `businessOperation.taxAnalysis.fetUfbdYearVatTaxBurRateChaTre` | 年度增值税税负率变动趋势--A:持续增长型B:波动增长型C:直线平稳型D:波动平稳型E:波动下降型F:持续下降型G:大幅度波动型 | String |
| `businessOperation.taxAnalysis.fetUfbdYearCitTaxBurRateChaTre` | 年度所得税税负率变动趋势--A:持续增长型B:波动增长型C:直线平稳型D:波动平稳型E:波动下降型F:持续下降型G:大幅度波动型 | String |
| `businessOperation.tradingProductsAndYears` | 交易商品-合作年限 | Object |
| `businessOperation.tradingProductsAndYears.productsLastYearCusList` | 主要客户变动情况(去年和前年)-去年客户交易商品列表 | Array |
| `businessOperation.tradingProductsAndYears.productsLastYearSupList` | 主要客户变动情况(去年和前年)-去年供应商交易商品列表 | Array |
| `businessOperation.tradingProductsAndYears.productsBeLastYearCusList` | 主要客户变动情况(去年和前年)-前年客户交易商品列表 | Array |
| `businessOperation.tradingProductsAndYears.productsBeLastYearSupList` | 主要客户变动情况(去年和前年)-前年供应商交易商品列表 | Array |
| `businessOperation.tradingProductsAndYears.lastYearCusCooperationPeriodList` | 主要客户变动情况(去年和前年和今年)-客户合作年限 | Object |
| `businessOperation.tradingProductsAndYears.lastYearSupCooperationPeriodList` | 主要客户变动情况(去年和前年和今年)-供应商合作年限 | Object |
### 企业财务分析 (financeAnalysis)
| 字段路径 | 中文说明 | 文档类型 |
| --- | --- | --- |
| `financeAnalysis` | 企业财务分析 | Object |
| `financeAnalysis.yearVatDeclaration` | 增值税申报展示 | Array |
| `financeAnalysis.yearVatDeclaration.year` | 年份 | Integer |
| `financeAnalysis.yearVatDeclaration.vatDeclaration` | 增值税申报 | Object |
| `financeAnalysis.yearVatDeclaration.vatDeclaration.month` | 月份 | Integer |
| `financeAnalysis.yearVatDeclaration.vatDeclaration.declaration` | 申报展示 | String |
| `financeAnalysis.yearIncomeDeclaration` | 所得税申报展示 | Array |
| `financeAnalysis.yearIncomeDeclaration.year` | 年份 | Integer |
| `financeAnalysis.yearIncomeDeclaration.vatDeclaration` | 增值税申报 | Object |
| `financeAnalysis.yearIncomeDeclaration.vatDeclaration.month` | 月份 | Integer |
| `financeAnalysis.yearIncomeDeclaration.vatDeclaration.declaration` | 申报展示 | String |
| `financeAnalysis.financialRatios` | 近3年主要财务指标 | Array |
| `financeAnalysis.financialRatios.year` | 年份 | Integer |
| `financeAnalysis.financialRatios.profitability` | 盈利能力 | Object |
| `financeAnalysis.financialRatios.profitability.grossProfitMargin` | 销售毛利率(%) | Number |
| `financeAnalysis.financialRatios.profitability.roaRate` | ROA资产净利率(%) | Number |
| `financeAnalysis.financialRatios.profitability.roeRate` | ROE净资产收益率(%) | Number |
| `financeAnalysis.financialRatios.operatingCapacity` | 营运能力 | Object |
| `financeAnalysis.financialRatios.operatingCapacity.inventoryRate` | 存货周转率 | Number |
| `financeAnalysis.financialRatios.operatingCapacity.accountReceivableRate` | 应收账款周转率 | Number |
| `financeAnalysis.financialRatios.operatingCapacity.totalAssetRate` | 总资产周转率 | Number |
| `financeAnalysis.financialRatios.solvency` | 偿债能力 | Object |
| `financeAnalysis.financialRatios.solvency.assetRatio` | 资产负债率(%) | Number |
| `financeAnalysis.financialRatios.solvency.currentRatio` | 流动比率 | Number |
| `financeAnalysis.financialRatios.solvency.borrowingDependency` | 借款依存度(%) | Number |
| `financeAnalysis.financialRatios.solvency.interestCoverage` | 已获利息倍数 | Number |
| `financeAnalysis.financialRatios.solvency.cashFlowLiabilityRatio` | 现金流动负债比率(%) | Number |
| `financeAnalysis.financialRatios.solvency.saleCashRatio` | 销售现金比率(%) | Number |
| `financeAnalysis.financialRatios.solvency.liquidationValueRatio` | 清算价值比率(%) | Number |
| `financeAnalysis.financialRatios.solvency.quickRatio` | 速动比率 | Number |
| `financeAnalysis.financialRatios.developCapacity` | 发展能力 | Object |
| `financeAnalysis.financialRatios.developCapacity.taxGrowthRate` | 营业增长率(%)[发票数据] | Number |
| `financeAnalysis.financialRatios.developCapacity.financialGrowthRate` | 营业增长率(%)[财报数据] | Number |
| `financeAnalysis.financialRatios.developCapacity.capitalAccumulationRate` | 资本积累率(%) | Number |
| `financeAnalysis.financialRatios.developCapacity.assetGrowthRate` | 总资产增长率(%) | Number |
| `financeAnalysis.dynamicFinancialDetection` | 动态财务预警检测 | Object |
| `financeAnalysis.dynamicFinancialDetection.profitQualityAnalysis` | 盈利质量分析 | Object |
| `financeAnalysis.dynamicFinancialDetection.profitQualityAnalysis.earlyWarning` | 预警次数 | Integer |
| `financeAnalysis.dynamicFinancialDetection.profitQualityAnalysis.attention` | 关注次数 | Integer |
| `financeAnalysis.dynamicFinancialDetection.profitQualityAnalysis.incIncrSta` | 收入增长稳定性 | String |
| `financeAnalysis.dynamicFinancialDetection.profitQualityAnalysis.lowQualSalVit1` | 低质量的销售活力1 | String |
| `financeAnalysis.dynamicFinancialDetection.profitQualityAnalysis.lowQualSalVit2` | 低质量的销售活力2 | String |
| `financeAnalysis.dynamicFinancialDetection.profitQualityAnalysis.lowQualSalVit3` | 低质量的销售活力3 | String |
| `financeAnalysis.dynamicFinancialDetection.profitQualityAnalysis.radWorkCapMana1` | 激进的营运资金管理1 | String |
| `financeAnalysis.dynamicFinancialDetection.profitQualityAnalysis.radWorkCapMana2` | 激进的营运资金管理2 | String |
| `financeAnalysis.dynamicFinancialDetection.financialStabilityAnalysis` | 财务稳定性分析 | Object |
| `financeAnalysis.dynamicFinancialDetection.financialStabilityAnalysis.earlyWarning` | 预警次数 | Integer |
| `financeAnalysis.dynamicFinancialDetection.financialStabilityAnalysis.attention` | 关注次数 | Integer |
| `financeAnalysis.dynamicFinancialDetection.financialStabilityAnalysis.intCovAnalysis` | 利息保障倍数分解--预警/关注/- | String |
| `financeAnalysis.dynamicFinancialDetection.financialStabilityAnalysis.radStlMana1` | 激进的短期贷款管理1--预警/关注/- | String |
| `financeAnalysis.dynamicFinancialDetection.financialStabilityAnalysis.radStlMana2` | 激进的短期贷款管理2--预警/关注/- | String |
| `financeAnalysis.correctionTestInRecent12Months` | 近12个月申报更正检测 | Array |
| `financeAnalysis.correctionTestInRecent12Months.projectName` | 征收项目 | String |
| `financeAnalysis.correctionTestInRecent12Months.beginDate` | 所属期起 | String |
| `financeAnalysis.correctionTestInRecent12Months.endDate` | 所属期止 | String |
| `financeAnalysis.correctionTestInRecent12Months.paymentDate` | 更正后申报日期 | String |
| `financeAnalysis.correctionTestInRecent12Months.paymentPeriodDate` | 更正前申报日期 | String |
| `financeAnalysis.correctionTestInRecent12Months.taxPayable` | 更正后应补退税额(元) | Number |
| `financeAnalysis.correctionTestInRecent12Months.supplementTaxAmount` | 更正前应补退税额(元) | Number |
| `financeAnalysis.vatConcentratedDeclarationAudits` | 近12个月增值税集中申报检测 | Array |
| `financeAnalysis.vatConcentratedDeclarationAudits.declarationDate` | 申报日期 | String |
| `financeAnalysis.vatConcentratedDeclarationAudits.beginDate` | 所属期起 | String |
| `financeAnalysis.vatConcentratedDeclarationAudits.endDate` | 所属期止 | String |
| `financeAnalysis.vatConcentratedDeclarationAudits.taxPayable` | 纳税销售额(元) | Number |
### 企业信用情况 (enterpriseCredit)
| 字段路径 | 中文说明 | 文档类型 |
| --- | --- | --- |
| `enterpriseCredit` | 企业信用情况 | Object |
| `enterpriseCredit.negativeInformationVO` | 36个月内负面信息概述 | Object |
| `enterpriseCredit.negativeInformationVO.breakPromise` | 失信被执行人 | Object |
| `enterpriseCredit.negativeInformationVO.breakPromise.threeMonthsHitCount` | 3个月内命中数(条) | Integer |
| `enterpriseCredit.negativeInformationVO.breakPromise.sixMonthsHitCount` | 6个月内命中数(条) | Integer |
| `enterpriseCredit.negativeInformationVO.breakPromise.twelveMonthsHitCount` | 12个月内命中数(条) | Integer |
| `enterpriseCredit.negativeInformationVO.breakPromise.hitCount` | 36个月内命中数(条) | Integer |
| `enterpriseCredit.negativeInformationVO.breakPromise.effectiveHitCount` | 当前有效命中数(条) | Integer |
| `enterpriseCredit.negativeInformationVO.executedPerson` | 被执行人 | Object |
| `enterpriseCredit.negativeInformationVO.executedPerson.threeMonthsHitCount` | 3个月内命中数(条) | Integer |
| `enterpriseCredit.negativeInformationVO.executedPerson.sixMonthsHitCount` | 6个月内命中数(条) | Integer |
| `enterpriseCredit.negativeInformationVO.executedPerson.twelveMonthsHitCount` | 12个月内命中数(条) | Integer |
| `enterpriseCredit.negativeInformationVO.executedPerson.hitCount` | 36个月内命中数(条) | Integer |
| `enterpriseCredit.negativeInformationVO.executedPerson.effectiveHitCount` | 当前有效命中数(条) | Integer |
| `enterpriseCredit.negativeInformationVO.abnormalOperation` | 经营异常 | Object |
| `enterpriseCredit.negativeInformationVO.abnormalOperation.threeMonthsHitCount` | 3个月内命中数(条) | Integer |
| `enterpriseCredit.negativeInformationVO.abnormalOperation.sixMonthsHitCount` | 6个月内命中数(条) | Integer |
| `enterpriseCredit.negativeInformationVO.abnormalOperation.twelveMonthsHitCount` | 12个月内命中数(条) | Integer |
| `enterpriseCredit.negativeInformationVO.abnormalOperation.hitCount` | 36个月内命中数(条) | Integer |
| `enterpriseCredit.negativeInformationVO.abnormalOperation.effectiveHitCount` | 当前有效命中数(条) | Integer |
| `enterpriseCredit.negativeInformationVO.seriousViolation` | 严重违法 | Object |
| `enterpriseCredit.negativeInformationVO.seriousViolation.threeMonthsHitCount` | 3个月内命中数(条) | Integer |
| `enterpriseCredit.negativeInformationVO.seriousViolation.sixMonthsHitCount` | 6个月内命中数(条) | Integer |
| `enterpriseCredit.negativeInformationVO.seriousViolation.twelveMonthsHitCount` | 12个月内命中数(条) | Integer |
| `enterpriseCredit.negativeInformationVO.seriousViolation.hitCount` | 36个月内命中数(条) | Integer |
| `enterpriseCredit.negativeInformationVO.seriousViolation.effectiveHitCount` | 当前有效命中数(条) | Integer |
| `enterpriseCredit.negativeInformationVO.administrativeSanction` | 行政处罚 | Object |
| `enterpriseCredit.negativeInformationVO.administrativeSanction.threeMonthsHitCount` | 3个月内命中数(条) | Integer |
| `enterpriseCredit.negativeInformationVO.administrativeSanction.sixMonthsHitCount` | 6个月内命中数(条) | Integer |
| `enterpriseCredit.negativeInformationVO.administrativeSanction.twelveMonthsHitCount` | 12个月内命中数(条) | Integer |
| `enterpriseCredit.negativeInformationVO.administrativeSanction.hitCount` | 36个月内命中数(条) | Integer |
| `enterpriseCredit.negativeInformationVO.administrativeSanction.effectiveHitCount` | 当前有效命中数(条) | Integer |
| `enterpriseCredit.negativeInformationVO.chattelMortgage` | 动产抵押 | Object |
| `enterpriseCredit.negativeInformationVO.chattelMortgage.threeMonthsHitCount` | 3个月内命中数(条) | Integer |
| `enterpriseCredit.negativeInformationVO.chattelMortgage.sixMonthsHitCount` | 6个月内命中数(条) | Integer |
| `enterpriseCredit.negativeInformationVO.chattelMortgage.twelveMonthsHitCount` | 12个月内命中数(条) | Integer |
| `enterpriseCredit.negativeInformationVO.chattelMortgage.hitCount` | 36个月内命中数(条) | Integer |
| `enterpriseCredit.negativeInformationVO.chattelMortgage.effectiveHitCount` | 当前有效命中数(条) | Integer |
| `enterpriseCredit.negativeInformationVO.equityPledge` | 股权出质 | Object |
| `enterpriseCredit.negativeInformationVO.equityPledge.threeMonthsHitCount` | 3个月内命中数(条) | Integer |
| `enterpriseCredit.negativeInformationVO.equityPledge.sixMonthsHitCount` | 6个月内命中数(条) | Integer |
| `enterpriseCredit.negativeInformationVO.equityPledge.twelveMonthsHitCount` | 12个月内命中数(条) | Integer |
| `enterpriseCredit.negativeInformationVO.equityPledge.hitCount` | 36个月内命中数(条) | Integer |
| `enterpriseCredit.negativeInformationVO.equityPledge.effectiveHitCount` | 当前有效命中数(条) | Integer |
| `enterpriseCredit.negativeInformationVO.equityFreeze` | 股权冻结 | Object |
| `enterpriseCredit.negativeInformationVO.equityFreeze.threeMonthsHitCount` | 3个月内命中数(条) | Integer |
| `enterpriseCredit.negativeInformationVO.equityFreeze.sixMonthsHitCount` | 6个月内命中数(条) | Integer |
| `enterpriseCredit.negativeInformationVO.equityFreeze.twelveMonthsHitCount` | 12个月内命中数(条) | Integer |
| `enterpriseCredit.negativeInformationVO.equityFreeze.hitCount` | 36个月内命中数(条) | Integer |
| `enterpriseCredit.negativeInformationVO.equityFreeze.effectiveHitCount` | 当前有效命中数(条) | Integer |
| `enterpriseCredit.negativeInformationVO.filingInformation` | 企业立案信息 | Object |
| `enterpriseCredit.negativeInformationVO.filingInformation.threeMonthsHitCount` | 3个月内命中数(条) | Integer |
| `enterpriseCredit.negativeInformationVO.filingInformation.sixMonthsHitCount` | 6个月内命中数(条) | Integer |
| `enterpriseCredit.negativeInformationVO.filingInformation.twelveMonthsHitCount` | 12个月内命中数(条) | Integer |
| `enterpriseCredit.negativeInformationVO.filingInformation.hitCount` | 36个月内命中数(条) | Integer |
| `enterpriseCredit.negativeInformationVO.filingInformation.effectiveHitCount` | 当前有效命中数(条) | Integer |
| `enterpriseCredit.breakPromiseList` | 失信被执行人信息 | Array |
| `enterpriseCredit.breakPromiseList.businessEntity` | 失信被执行人对象 | String |
| `enterpriseCredit.breakPromiseList.anno` | 案号 | String |
| `enterpriseCredit.breakPromiseList.lianDate` | 立案时间 | String |
| `enterpriseCredit.breakPromiseList.executeGov` | 执行法院 | String |
| `enterpriseCredit.breakPromiseList.executeStatus` | 被执行人的履行情况 | String |
| `enterpriseCredit.breakPromiseList.publicDate` | 发布时间 | String |
| `enterpriseCredit.breakPromiseList.executeNo` | 执行依据文号 | String |
| `enterpriseCredit.executedPersonList` | 被执行人信息 | Array |
| `enterpriseCredit.executedPersonList.personName` | 被执行人对象 | String |
| `enterpriseCredit.executedPersonList.anno` | 案号 | String |
| `enterpriseCredit.executedPersonList.lianDate` | 立案时间 | String |
| `enterpriseCredit.executedPersonList.executeGov` | 执行法院 | String |
| `enterpriseCredit.executedPersonList.biaodi` | 执行标的(元) | String |
| `enterpriseCredit.executedPersonList.status` | 执行中 | String |
| `enterpriseCredit.abnormalOperationList` | 经营异常信息 | Array |
| `enterpriseCredit.abnormalOperationList.addReason` | 列入经营异常名录原因 | String |
| `enterpriseCredit.abnormalOperationList.addDate` | 列入日期 | String |
| `enterpriseCredit.abnormalOperationList.decisionOffice` | 列入决定机关 | String |
| `enterpriseCredit.abnormalOperationList.removeDate` | 移除日期 | String |
| `enterpriseCredit.abnormalOperationList.removeReason` | 移出经营异常名录原因 | String |
| `enterpriseCredit.seriousViolationList` | 严重违法信息 | Array |
| `enterpriseCredit.seriousViolationList.inReason` | 列入原因 | String |
| `enterpriseCredit.seriousViolationList.inDate` | 列入日期 | String |
| `enterpriseCredit.seriousViolationList.inDepartment` | 列入决定机关 | String |
| `enterpriseCredit.seriousViolationList.removeReason` | 移除原因 | String |
| `enterpriseCredit.seriousViolationList.removeDate` | 移除日期 | String |
| `enterpriseCredit.administrativeSanctionList` | 行政处罚信息 | Array |
| `enterpriseCredit.administrativeSanctionList.docNo` | 处罚决定文书 | String |
| `enterpriseCredit.administrativeSanctionList.punishReason` | 处罚事由 | String |
| `enterpriseCredit.administrativeSanctionList.punishResult` | 处罚结果 | String |
| `enterpriseCredit.administrativeSanctionList.punishDate` | 处罚日期 | String |
| `enterpriseCredit.administrativeSanctionList.departmentName` | 决定机关 | String |
| `enterpriseCredit.chattelMortgageList` | 动产抵押信息 | Array |
| `enterpriseCredit.chattelMortgageList.pawnName` | 抵押物名称 | String |
| `enterpriseCredit.chattelMortgageList.desc` | 抵押物描述 | String |
| `enterpriseCredit.chattelMortgageList.peopleName` | 抵押权人名称 | String |
| `enterpriseCredit.chattelMortgageList.type` | 被担保债权类型 | String |
| `enterpriseCredit.chattelMortgageList.amount` | 被担保债权数额 | String |
| `enterpriseCredit.chattelMortgageList.term` | 债务人履行债务的期限 | String |
| `enterpriseCredit.chattelMortgageList.status` | 状态 | String |
| `enterpriseCredit.chattelMortgageList.department` | 登记机关 | String |
| `enterpriseCredit.chattelMortgageList.publicityDate` | 公示日期 | String |
| `enterpriseCredit.equityPledgeList` | 股权出质信息 | Array |
| `enterpriseCredit.equityPledgeList.regDate` | 公示日期 | String |
| `enterpriseCredit.equityPledgeList.regNumber` | 登记编号 | String |
| `enterpriseCredit.equityPledgeList.pledgor` | 出质人 | String |
| `enterpriseCredit.equityPledgeList.pledgee` | 质权人列表 | String |
| `enterpriseCredit.equityPledgeList.equityAmount` | 出质股权数额 | Number |
| `enterpriseCredit.equityPledgeList.tianYanChaState` | 状态 | String |
| `enterpriseCredit.equityFreezeList` | 股权冻结信息 | Array |
| `enterpriseCredit.equityFreezeList.executeName` | 被执行人名称 | String |
| `enterpriseCredit.equityFreezeList.equityAmount` | 股权数额 | String |
| `enterpriseCredit.equityFreezeList.executeCourt` | 执行法院 | String |
| `enterpriseCredit.equityFreezeList.executionNoticeNum` | 通知文书号 | String |
| `enterpriseCredit.equityFreezeList.executeStatus` | 类型/状态 | String |
| `enterpriseCredit.equityFreezeList.freezeStartDate` | 冻结期限自 | String |
| `enterpriseCredit.equityFreezeList.freezeEndDate` | 冻结期限至 | String |
| `enterpriseCredit.equityFreezeList.publicDate` | 公示日期 | String |
| `enterpriseCredit.filingInformationList` | 企业立案信息 | Array |
| `enterpriseCredit.filingInformationList.personName` | 公司名称/法人姓名 | String |
| `enterpriseCredit.filingInformationList.caseNo` | 案号 | String |
| `enterpriseCredit.filingInformationList.defendantList` | 被告人/被告/被上诉人/被申请人 | Array |
| `enterpriseCredit.filingInformationList.prosecutorList` | 公诉人/原告/上诉人/申请人 | Array |
| `enterpriseCredit.filingInformationList.reason` | 案由 | String |
| `enterpriseCredit.filingInformationList.publishDate` | 立案日期 | String |
| `enterpriseCredit.filingInformationList.caseStatus` | 案件状态 | String |
| `enterpriseCredit.filingInformationList.caseType` | 案件类型 | String |
| `enterpriseCredit.companyEnvironmentCaseList` | 环境处罚 | Array |
| `enterpriseCredit.companyEnvironmentCaseList.punishmentNo` | 处罚文书号 | String |
| `enterpriseCredit.companyEnvironmentCaseList.punishmentDate` | 处罚日期(yyyy-MM-dd) | String |
| `enterpriseCredit.companyEnvironmentCaseList.punishmentDept` | 作出处罚单位名称 | String |
| `enterpriseCredit.companyEnvironmentCaseList.punishmentType` | 处罚类型 | String |
| `enterpriseCredit.companyEnvironmentCaseList.history` | 是否是历史公示信息[0当前公示信息1历史公示信息] | Integer |
| `enterpriseCredit.companyEnvironmentCaseList.punishmentAmount` | 处罚金额(万元) | String |
### 附件 (enclosure)
| 字段路径 | 中文说明 | 文档类型 |
| --- | --- | --- |
| `enclosure` | 附件 | Object |
| `enclosure.balanceSheet` | 附件一:三年一期重点科目总览 资产负债表 | Object |
| `enclosure.balanceSheet.threeYearsAgo` | 大前年 | String |
| `enclosure.balanceSheet.theYearBeforeLast` | 前年 | String |
| `enclosure.balanceSheet.lastYear` | 去年 | String |
| `enclosure.balanceSheet.thisYear` | 今年 | String |
| `enclosure.balanceSheet.monetaryCapital` | 货币资金 | Object |
| `enclosure.balanceSheet.monetaryCapital.tyaQm` | 大前年数据 | String |
| `enclosure.balanceSheet.monetaryCapital.tyablQm` | 前年数据 | String |
| `enclosure.balanceSheet.monetaryCapital.lyQm` | 去年数据 | String |
| `enclosure.balanceSheet.monetaryCapital.tyQm` | 今年数据 | String |
| `enclosure.balanceSheetNOTESReceivable` | 应收票据 | Object |
| `enclosure.balanceSheetNOTESReceivable.tyaQm` | 大前年数据 | String |
| `enclosure.balanceSheetNOTESReceivable.tyablQm` | 前年数据 | String |
| `enclosure.balanceSheetNOTESReceivable.lyQm` | 去年数据 | String |
| `enclosure.balanceSheetNOTESReceivable.tyQm` | 今年数据 | String |
| `enclosure.balanceSheet.accountReceivable` | 应收账款 | Object |
| `enclosure.balanceSheet.accountReceivable.tyaQm` | 大前年数据 | String |
| `enclosure.balanceSheet.accountReceivable.tyablQm` | 前年数据 | String |
| `enclosure.balanceSheet.accountReceivable.lyQm` | 去年数据 | String |
| `enclosure.balanceSheet.accountReceivable.tyQm` | 今年数据 | String |
| `enclosure.balanceSheet.advancePayment` | 预付款项 | Object |
| `enclosure.balanceSheet.advancePayment.tyaQm` | 大前年数据 | String |
| `enclosure.balanceSheet.advancePayment.tyablQm` | 前年数据 | String |
| `enclosure.balanceSheet.advancePayment.lyQm` | 去年数据 | String |
| `enclosure.balanceSheet.advancePayment.tyQm` | 今年数据 | String |
| `enclosure.balanceSheet.otherReceivable` | 其他应收款 | Object |
| `enclosure.balanceSheet.otherReceivable.tyaQm` | 大前年数据 | String |
| `enclosure.balanceSheet.otherReceivable.tyablQm` | 前年数据 | String |
| `enclosure.balanceSheet.otherReceivable.lyQm` | 去年数据 | String |
| `enclosure.balanceSheet.otherReceivable.tyQm` | 今年数据 | String |
| `enclosure.balanceSheet.stock` | 存货 | Object |
| `enclosure.balanceSheet.stock.tyaQm` | 大前年数据 | String |
| `enclosure.balanceSheet.stock.tyablQm` | 前年数据 | String |
| `enclosure.balanceSheet.stock.lyQm` | 去年数据 | String |
| `enclosure.balanceSheet.stock.tyQm` | 今年数据 | String |
| `enclosure.balanceSheet.totalCurrentAssets` | 流动资产合计 | Object |
| `enclosure.balanceSheet.totalCurrentAssets.tyaQm` | 大前年数据 | String |
| `enclosure.balanceSheet.totalCurrentAssets.tyablQm` | 前年数据 | String |
| `enclosure.balanceSheet.totalCurrentAssets.lyQm` | 去年数据 | String |
| `enclosure.balanceSheet.totalCurrentAssets.tyQm` | 今年数据 | String |
| `enclosure.balanceSheet.fixedAssets` | 固定资产 | Object |
| `enclosure.balanceSheet.fixedAssets.tyaQm` | 大前年数据 | String |
| `enclosure.balanceSheet.fixedAssets.tyablQm` | 前年数据 | String |
| `enclosure.balanceSheet.fixedAssets.lyQm` | 去年数据 | String |
| `enclosure.balanceSheet.fixedAssets.tyQm` | 今年数据 | String |
| `enclosure.balanceSheet.constructionProgress` | 在建工程 | Object |
| `enclosure.balanceSheet.constructionProgress.tyaQm` | 大前年数据 | String |
| `enclosure.balanceSheet.constructionProgress.tyablQm` | 前年数据 | String |
| `enclosure.balanceSheet.constructionProgress.lyQm` | 去年数据 | String |
| `enclosure.balanceSheet.constructionProgress.tyQm` | 今年数据 | String |
| `enclosure.balanceSheet.intangibleAssets` | 无形资产 | Object |
| `enclosure.balanceSheet.intangibleAssets.tyaQm` | 大前年数据 | String |
| `enclosure.balanceSheet.intangibleAssets.tyablQm` | 前年数据 | String |
| `enclosure.balanceSheet.intangibleAssets.lyQm` | 去年数据 | String |
| `enclosure.balanceSheet.intangibleAssets.tyQm` | 今年数据 | String |
| `enclosure.balanceSheet.nonCurrentAssets` | 非流动资产合计 | Object |
| `enclosure.balanceSheet.nonCurrentAssets.tyaQm` | 大前年数据 | String |
| `enclosure.balanceSheet.nonCurrentAssets.tyablQm` | 前年数据 | String |
| `enclosure.balanceSheet.nonCurrentAssets.lyQm` | 去年数据 | String |
| `enclosure.balanceSheet.nonCurrentAssets.tyQm` | 今年数据 | String |
| `enclosure.balanceSheet.totalAssets` | 资产总计 | Object |
| `enclosure.balanceSheet.totalAssets.tyaQm` | 大前年数据 | String |
| `enclosure.balanceSheet.totalAssets.tyablQm` | 前年数据 | String |
| `enclosure.balanceSheet.totalAssets.lyQm` | 去年数据 | String |
| `enclosure.balanceSheet.totalAssets.tyQm` | 今年数据 | String |
| `enclosure.balanceSheet.shortBorrow` | 短期借款 | Object |
| `enclosure.balanceSheet.shortBorrow.tyaQm` | 大前年数据 | String |
| `enclosure.balanceSheet.shortBorrow.tyablQm` | 前年数据 | String |
| `enclosure.balanceSheet.shortBorrow.lyQm` | 去年数据 | String |
| `enclosure.balanceSheet.shortBorrow.tyQm` | 今年数据 | String |
| `enclosure.balanceSheet.notesPayable` | 应付票据 | Object |
| `enclosure.balanceSheet.notesPayable.tyaQm` | 大前年数据 | String |
| `enclosure.balanceSheet.notesPayable.tyablQm` | 前年数据 | String |
| `enclosure.balanceSheet.notesPayable.lyQm` | 去年数据 | String |
| `enclosure.balanceSheet.notesPayable.tyQm` | 今年数据 | String |
| `enclosure.balanceSheet.accountPayable` | 应付账款 | Object |
| `enclosure.balanceSheet.accountPayable.tyaQm` | 大前年数据 | String |
| `enclosure.balanceSheet.accountPayable.tyablQm` | 前年数据 | String |
| `enclosure.balanceSheet.accountPayable.lyQm` | 去年数据 | String |
| `enclosure.balanceSheet.accountPayable.tyQm` | 今年数据 | String |
| `enclosure.balanceSheet.advanceReceipts` | 预收账款 | Object |
| `enclosure.balanceSheet.advanceReceipts.tyaQm` | 大前年数据 | String |
| `enclosure.balanceSheet.advanceReceipts.tyablQm` | 前年数据 | String |
| `enclosure.balanceSheet.advanceReceipts.lyQm` | 去年数据 | String |
| `enclosure.balanceSheet.advanceReceipts.tyQm` | 今年数据 | String |
| `enclosure.balanceSheet.employeeCompensationPayable` | 应付职工薪酬 | Object |
| `enclosure.balanceSheet.employeeCompensationPayable.tyaQm` | 大前年数据 | String |
| `enclosure.balanceSheet.employeeCompensationPayable.tyablQm` | 前年数据 | String |
| `enclosure.balanceSheet.employeeCompensationPayable.lyQm` | 去年数据 | String |
| `enclosure.balanceSheet.employeeCompensationPayable.tyQm` | 今年数据 | String |
| `enclosure.balanceSheet.taxesPayable` | 应交税费 | Object |
| `enclosure.balanceSheet.taxesPayable.tyaQm` | 大前年数据 | String |
| `enclosure.balanceSheet.taxesPayable.tyablQm` | 前年数据 | String |
| `enclosure.balanceSheet.taxesPayable.lyQm` | 去年数据 | String |
| `enclosure.balanceSheet.taxesPayable.tyQm` | 今年数据 | String |
| `enclosure.balanceSheet.otherPayable` | 其他应付款 | Object |
| `enclosure.balanceSheet.otherPayable.tyaQm` | 大前年数据 | String |
| `enclosure.balanceSheet.otherPayable.tyablQm` | 前年数据 | String |
| `enclosure.balanceSheet.otherPayable.lyQm` | 去年数据 | String |
| `enclosure.balanceSheet.otherPayable.tyQm` | 今年数据 | String |
| `enclosure.balanceSheet.totalCurrentLiabilities` | 流动负债合计 | Object |
| `enclosure.balanceSheet.totalCurrentLiabilities.tyaQm` | 大前年数据 | String |
| `enclosure.balanceSheet.totalCurrentLiabilities.tyablQm` | 前年数据 | String |
| `enclosure.balanceSheet.totalCurrentLiabilities.lyQm` | 去年数据 | String |
| `enclosure.balanceSheet.totalCurrentLiabilities.tyQm` | 今年数据 | String |
| `enclosure.balanceSheet.longTermLoan` | 长期借款 | Object |
| `enclosure.balanceSheet.longTermLoan.tyaQm` | 大前年数据 | String |
| `enclosure.balanceSheet.longTermLoan.tyablQm` | 前年数据 | String |
| `enclosure.balanceSheet.longTermLoan.lyQm` | 去年数据 | String |
| `enclosure.balanceSheet.longTermLoan.tyQm` | 今年数据 | String |
| `enclosure.balanceSheet.nonCurrentLiabilities` | 非流动负债合计 | Object |
| `enclosure.balanceSheet.nonCurrentLiabilities.tyaQm` | 大前年数据 | String |
| `enclosure.balanceSheet.nonCurrentLiabilities.tyablQm` | 前年数据 | String |
| `enclosure.balanceSheet.nonCurrentLiabilities.lyQm` | 去年数据 | String |
| `enclosure.balanceSheet.nonCurrentLiabilities.tyQm` | 今年数据 | String |
| `enclosure.balanceSheet.totalLiabilities` | 负债合计 | Object |
| `enclosure.balanceSheet.totalLiabilities.tyaQm` | 大前年数据 | String |
| `enclosure.balanceSheet.totalLiabilities.tyablQm` | 前年数据 | String |
| `enclosure.balanceSheet.totalLiabilities.lyQm` | 去年数据 | String |
| `enclosure.balanceSheet.totalLiabilities.tyQm` | 今年数据 | String |
| `enclosure.balanceSheet.paidInCapital` | 实收资本(或股本) | Object |
| `enclosure.balanceSheet.paidInCapital.tyaQm` | 大前年数据 | String |
| `enclosure.balanceSheet.paidInCapital.tyablQm` | 前年数据 | String |
| `enclosure.balanceSheet.paidInCapital.lyQm` | 去年数据 | String |
| `enclosure.balanceSheet.paidInCapital.tyQm` | 今年数据 | String |
| `enclosure.balanceSheet.capitalReserve` | 资本公积 | Object |
| `enclosure.balanceSheet.capitalReserve.tyaQm` | 大前年数据 | String |
| `enclosure.balanceSheet.capitalReserve.tyablQm` | 前年数据 | String |
| `enclosure.balanceSheet.capitalReserve.lyQm` | 去年数据 | String |
| `enclosure.balanceSheet.capitalReserve.tyQm` | 今年数据 | String |
| `enclosure.balanceSheet.surplusReserves` | 盈余公积 | Object |
| `enclosure.balanceSheet.surplusReserves.tyaQm` | 大前年数据 | String |
| `enclosure.balanceSheet.surplusReserves.tyablQm` | 前年数据 | String |
| `enclosure.balanceSheet.surplusReserves.lyQm` | 去年数据 | String |
| `enclosure.balanceSheet.surplusReserves.tyQm` | 今年数据 | String |
| `enclosure.balanceSheet.undistributedProfit` | 未分配利润 | Object |
| `enclosure.balanceSheet.undistributedProfit.tyaQm` | 大前年数据 | String |
| `enclosure.balanceSheet.undistributedProfit.tyablQm` | 前年数据 | String |
| `enclosure.balanceSheet.undistributedProfit.lyQm` | 去年数据 | String |
| `enclosure.balanceSheet.undistributedProfit.tyQm` | 今年数据 | String |
| `enclosure.balanceSheet.ownerEquity` | 所有者权益(或股东权益)合计 | Object |
| `enclosure.balanceSheet.ownerEquity.tyaQm` | 大前年数据 | String |
| `enclosure.balanceSheet.ownerEquity.tyablQm` | 前年数据 | String |
| `enclosure.balanceSheet.ownerEquity.lyQm` | 去年数据 | String |
| `enclosure.balanceSheet.ownerEquity.tyQm` | 今年数据 | String |
| `enclosure.balanceSheet.liabilitiesEquity` | 负债和所有者权益(或股东权益)总 | Object |
| `enclosure.balanceSheet.liabilitiesEquity.tyaQm` | 大前年数据 | String |
| `enclosure.balanceSheet.liabilitiesEquity.tyablQm` | 前年数据 | String |
| `enclosure.balanceSheet.liabilitiesEquity.lyQm` | 去年数据 | String |
| `enclosure.balanceSheet.liabilitiesEquity.tyQm` | 今年数据 | String |
| `enclosure.balanceSheet.longTermPayables` | 长期应付款 | Object |
| `enclosure.balanceSheet.longTermPayables.tyaQm` | 大前年数据 | String |
| `enclosure.balanceSheet.longTermPayables.tyablQm` | 前年数据 | String |
| `enclosure.balanceSheet.longTermPayables.lyQm` | 去年数据 | String |
| `enclosure.balanceSheet.longTermPayables.tyQm` | 今年数据 | String |
| `enclosure.incomeStatement` | 附件一:三年一期重点科目总览 利润表 | Object |
| `enclosure.incomeStatement.threeYearsAgo` | 大前年 | String |
| `enclosure.incomeStatement.theYearBeforeLast` | 前年 | String |
| `enclosure.incomeStatement.lastYear` | 去年 | String |
| `enclosure.incomeStatement.thisYear` | 今年 | String |
| `enclosure.incomeStatement.businessIncome` | 营业收入 | Object |
| `enclosure.incomeStatement.businessIncome.tyaQm` | 大前年数据 | String |
| `enclosure.incomeStatement.businessIncome.tyablQm` | 前年数据 | String |
| `enclosure.incomeStatement.businessIncome.lyQm` | 去年数据 | String |
| `enclosure.incomeStatement.businessIncome.tyQm` | 今年数据 | String |
| `enclosure.incomeStatement.operatingCosts` | 减:营业成本 | Object |
| `enclosure.incomeStatement.operatingCosts.tyaQm` | 大前年数据 | String |
| `enclosure.incomeStatement.operatingCosts.tyablQm` | 前年数据 | String |
| `enclosure.incomeStatement.operatingCosts.lyQm` | 去年数据 | String |
| `enclosure.incomeStatement.operatingCosts.tyQm` | 今年数据 | String |
| `enclosure.incomeStatement.taxSurcharge` | 税金及附加 | Object |
| `enclosure.incomeStatement.taxSurcharge.tyaQm` | 大前年数据 | String |
| `enclosure.incomeStatement.taxSurcharge.tyablQm` | 前年数据 | String |
| `enclosure.incomeStatement.taxSurcharge.lyQm` | 去年数据 | String |
| `enclosure.incomeStatement.taxSurcharge.tyQm` | 今年数据 | String |
| `enclosure.incomeStatement.sellingExpenses` | 销售费用 | Object |
| `enclosure.incomeStatement.sellingExpenses.tyaQm` | 大前年数据 | String |
| `enclosure.incomeStatement.sellingExpenses.tyablQm` | 前年数据 | String |
| `enclosure.incomeStatement.sellingExpenses.lyQm` | 去年数据 | String |
| `enclosure.incomeStatement.sellingExpenses.tyQm` | 今年数据 | String |
| `enclosure.incomeStatement.administrativeExpenses` | 管理费用 | Object |
| `enclosure.incomeStatement.administrativeExpenses.tyaQm` | 大前年数据 | String |
| `enclosure.incomeStatement.administrativeExpenses.tyablQm` | 前年数据 | String |
| `enclosure.incomeStatement.administrativeExpenses.lyQm` | 去年数据 | String |
| `enclosure.incomeStatement.administrativeExpenses.tyQm` | 今年数据 | String |
| `enclosure.incomeStatement.rdExpenses` | 研发费用 | Object |
| `enclosure.incomeStatement.rdExpenses.tyaQm` | 大前年数据 | String |
| `enclosure.incomeStatement.rdExpenses.tyablQm` | 前年数据 | String |
| `enclosure.incomeStatement.rdExpenses.lyQm` | 去年数据 | String |
| `enclosure.incomeStatement.rdExpenses.tyQm` | 今年数据 | String |
| `enclosure.incomeStatement.financialExpenses` | 财务费用 | Object |
| `enclosure.incomeStatement.financialExpenses.tyaQm` | 大前年数据 | String |
| `enclosure.incomeStatement.financialExpenses.tyablQm` | 前年数据 | String |
| `enclosure.incomeStatement.financialExpenses.lyQm` | 去年数据 | String |
| `enclosure.incomeStatement.financialExpenses.tyQm` | 今年数据 | String |
| `enclosure.incomeStatement.incomelInvestment` | 加:投资收益(损失以“-”号填列) | Object |
| `enclosure.incomeStatement.incomelInvestment.tyaQm` | 大前年数据 | String |
| `enclosure.incomeStatement.incomelInvestment.tyablQm` | 前年数据 | String |
| `enclosure.incomeStatement.incomelInvestment.lyQm` | 去年数据 | String |
| `enclosure.incomeStatement.incomelInvestment.tyQm` | 今年数据 | String |
| `enclosure.incomeStatement.operatingProfit` | 二、营业利润(亏损以“-”号填列) | Object |
| `enclosure.incomeStatement.operatingProfit.tyaQm` | 大前年数据 | String |
| `enclosure.incomeStatement.operatingProfit.tyablQm` | 前年数据 | String |
| `enclosure.incomeStatement.operatingProfit.lyQm` | 去年数据 | String |
| `enclosure.incomeStatement.operatingProfit.tyQm` | 今年数据 | String |
| `enclosure.incomeStatement.nonBusinessIncome` | 加:营业外收入 | Object |
| `enclosure.incomeStatement.nonBusinessIncome.tyaQm` | 大前年数据 | String |
| `enclosure.incomeStatement.nonBusinessIncome.tyablQm` | 前年数据 | String |
| `enclosure.incomeStatement.nonBusinessIncome.lyQm` | 去年数据 | String |
| `enclosure.incomeStatement.nonBusinessIncome.tyQm` | 今年数据 | String |
| `enclosure.incomeStatement.nonBusinessExpenditure` | 减:营业外支出 | Object |
| `enclosure.incomeStatement.nonBusinessExpenditure.tyaQm` | 大前年数据 | String |
| `enclosure.incomeStatement.nonBusinessExpenditure.tyablQm` | 前年数据 | String |
| `enclosure.incomeStatement.nonBusinessExpenditure.lyQm` | 去年数据 | String |
| `enclosure.incomeStatement.nonBusinessExpenditure.tyQm` | 今年数据 | String |
| `enclosure.incomeStatement.totalProfit` | 三、利润总额(亏损总额以“-”号填列) | Object |
| `enclosure.incomeStatement.totalProfit.tyaQm` | 大前年数据 | String |
| `enclosure.incomeStatement.totalProfit.tyablQm` | 前年数据 | String |
| `enclosure.incomeStatement.totalProfit.lyQm` | 去年数据 | String |
| `enclosure.incomeStatement.totalProfit.tyQm` | 今年数据 | String |
| `enclosure.incomeStatement.incomeTaxExpense` | 减:所得税费用 | Object |
| `enclosure.incomeStatement.incomeTaxExpense.tyaQm` | 大前年数据 | String |
| `enclosure.incomeStatement.incomeTaxExpense.tyablQm` | 前年数据 | String |
| `enclosure.incomeStatement.incomeTaxExpense.lyQm` | 去年数据 | String |
| `enclosure.incomeStatement.incomeTaxExpense.tyQm` | 今年数据 | String |
| `enclosure.incomeStatement.netProfit` | 四、净利润(净亏损以“-”号填列) | Object |
| `enclosure.incomeStatement.netProfit.tyaQm` | 大前年数据 | String |
| `enclosure.incomeStatement.netProfit.tyablQm` | 前年数据 | String |
| `enclosure.incomeStatement.netProfit.lyQm` | 去年数据 | String |
| `enclosure.incomeStatement.netProfit.tyQm` | 今年数据 | String |
| `enclosure.financialTransaction` | 附件一:三年一期重点科目总览 现金流量表 | Object |
| `enclosure.financialTransaction.tyaYear` | 大前年 | String |
| `enclosure.financialTransaction.beforeYear` | 前年 | String |
| `enclosure.financialTransaction.lastYear` | 去年 | String |
| `enclosure.financialTransaction.thisYear` | 今年 | String |
| `enclosure.financialTransaction.salesCash` | 销售商品、提供劳务收到的现金 | Object |
| `enclosure.financialTransaction.salesCash.thisYear` | 今年数据 | String |
| `enclosure.financialTransaction.salesCash.lastYear` | 去年数据 | String |
| `enclosure.financialTransaction.salesCash.beforeYear` | 前年数据 | String |
| `enclosure.financialTransaction.salesCash.tyaYear` | 大前年数据 | String |
| `enclosure.financialTransaction.opCashInflowTotal` | 经营活动现金流入小计 | Object |
| `enclosure.financialTransaction.opCashInflowTotal.thisYear` | 今年数据 | String |
| `enclosure.financialTransaction.opCashInflowTotal.lastYear` | 去年数据 | String |
| `enclosure.financialTransaction.opCashInflowTotal.beforeYear` | 前年数据 | String |
| `enclosure.financialTransaction.opCashInflowTotal.tyaYear` | 大前年数据 | String |
| `enclosure.financialTransaction.goodsPurchaseCash` | 购买商品、接受劳务支付的现金 | Object |
| `enclosure.financialTransaction.goodsPurchaseCash.thisYear` | 今年数据 | String |
| `enclosure.financialTransaction.goodsPurchaseCash.lastYear` | 去年数据 | String |
| `enclosure.financialTransaction.goodsPurchaseCash.beforeYear` | 前年数据 | String |
| `enclosure.financialTransaction.goodsPurchaseCash.tyaYear` | 大前年数据 | String |
| `enclosure.financialTransaction.empPaymentsCash` | 支付给职工以及为职工支付的现金 | Object |
| `enclosure.financialTransaction.empPaymentsCash.thisYear` | 今年数据 | String |
| `enclosure.financialTransaction.empPaymentsCash.lastYear` | 去年数据 | String |
| `enclosure.financialTransaction.empPaymentsCash.beforeYear` | 前年数据 | String |
| `enclosure.financialTransaction.empPaymentsCash.tyaYear` | 大前年数据 | String |
| `enclosure.financialTransaction.opCashOutflowTotal` | 经营活动现金流出小计 | Object |
| `enclosure.financialTransaction.opCashOutflowTotal.thisYear` | 今年数据 | String |
| `enclosure.financialTransaction.opCashOutflowTotal.lastYear` | 去年数据 | String |
| `enclosure.financialTransaction.opCashOutflowTotal.beforeYear` | 前年数据 | String |
| `enclosure.financialTransaction.opCashOutflowTotal.tyaYear` | 大前年数据 | String |
| `enclosure.financialTransaction.netCashFlowFromOpActivities` | 经营活动产生的现金流量净额 | Object |
| `enclosure.financialTransaction.netCashFlowFromOpActivities.thisYear` | 今年数据 | String |
| `enclosure.financialTransaction.netCashFlowFromOpActivities.lastYear` | 去年数据 | String |
| `enclosure.financialTransaction.netCashFlowFromOpActivities.beforeYear` | 前年数据 | String |
| `enclosure.financialTransaction.netCashFlowFromOpActivities.tyaYear` | 大前年数据 | String |
| `enclosure.financialTransaction.disposalAssetsReceivedCash` | 处置固定资产、无形资产和其他长期资产收回的现金净额 | Object |
| `enclosure.financialTransaction.disposalAssetsReceivedCash.thisYear` | 今年数据 | String |
| `enclosure.financialTransaction.disposalAssetsReceivedCash.lastYear` | 去年数据 | String |
| `enclosure.financialTransaction.disposalAssetsReceivedCash.beforeYear` | 前年数据 | String |
| `enclosure.financialTransaction.disposalAssetsReceivedCash.tyaYear` | 大前年数据 | String |
| `enclosure.financialTransaction.investmentInflowTotal` | 投资活动现金流入小计 | Object |
| `enclosure.financialTransaction.investmentInflowTotal.thisYear` | 今年数据 | String |
| `enclosure.financialTransaction.investmentInflowTotal.lastYear` | 去年数据 | String |
| `enclosure.financialTransaction.investmentInflowTotal.beforeYear` | 前年数据 | String |
| `enclosure.financialTransaction.investmentInflowTotal.tyaYear` | 大前年数据 | String |
| `enclosure.financialTransaction.acquisitionAssetsPaidCash` | 购建固定资产、无形资产和其他长期资产支付的现金 | Object |
| `enclosure.financialTransaction.acquisitionAssetsPaidCash.thisYear` | 今年数据 | String |
| `enclosure.financialTransaction.acquisitionAssetsPaidCash.lastYear` | 去年数据 | String |
| `enclosure.financialTransaction.acquisitionAssetsPaidCash.beforeYear` | 前年数据 | String |
| `enclosure.financialTransaction.acquisitionAssetsPaidCash.tyaYear` | 大前年数据 | String |
| `enclosure.financialTransaction.investmentOutflowTotal` | 投资活动现金流出小计 | Object |
| `enclosure.financialTransaction.investmentOutflowTotal.thisYear` | 今年数据 | String |
| `enclosure.financialTransaction.investmentOutflowTotal.lastYear` | 去年数据 | String |
| `enclosure.financialTransaction.investmentOutflowTotal.beforeYear` | 前年数据 | String |
| `enclosure.financialTransaction.investmentOutflowTotal.tyaYear` | 大前年数据 | String |
| `enclosure.financialTransaction.netCashFlowFromInvestmentActivities` | 投资活动产生的现金流量净额 | Object |
| `enclosure.financialTransaction.netCashFlowFromInvestmentActivities.thisYear` | 今年数据 | String |
| `enclosure.financialTransaction.netCashFlowFromInvestmentActivities.lastYear` | 去年数据 | String |
| `enclosure.financialTransaction.netCashFlowFromInvestmentActivities.beforeYear` | 前年数据 | String |
| `enclosure.financialTransaction.netCashFlowFromInvestmentActivities.tyaYear` | 大前年数据 | String |
| `enclosure.financialTransaction.absorptionInvestmentReceivedCash` | 吸收投资收到的现金 | Object |
| `enclosure.financialTransaction.absorptionInvestmentReceivedCash.thisYear` | 今年数据 | String |
| `enclosure.financialTransaction.absorptionInvestmentReceivedCash.lastYear` | 去年数据 | String |
| `enclosure.financialTransaction.absorptionInvestmentReceivedCash.beforeYear` | 前年数据 | String |
| `enclosure.financialTransaction.absorptionInvestmentReceivedCash.tyaYear` | 大前年数据 | String |
| `enclosure.financialTransaction.loanReceivedCash` | 取得借款收到的现金 | Object |
| `enclosure.financialTransaction.loanReceivedCash.thisYear` | 今年数据 | String |
| `enclosure.financialTransaction.loanReceivedCash.lastYear` | 去年数据 | String |
| `enclosure.financialTransaction.loanReceivedCash.beforeYear` | 前年数据 | String |
| `enclosure.financialTransaction.loanReceivedCash.tyaYear` | 大前年数据 | String |
| `enclosure.financialTransaction.financingInflowTotal` | 筹资活动现金流入小计 | Object |
| `enclosure.financialTransaction.financingInflowTotal.thisYear` | 今年数据 | String |
| `enclosure.financialTransaction.financingInflowTotal.lastYear` | 去年数据 | String |
| `enclosure.financialTransaction.financingInflowTotal.beforeYear` | 前年数据 | String |
| `enclosure.financialTransaction.financingInflowTotal.tyaYear` | 大前年数据 | String |
| `enclosure.financialTransaction.debtRepaymentPaidCash` | 偿还债务支付的现金 | Object |
| `enclosure.financialTransaction.debtRepaymentPaidCash.thisYear` | 今年数据 | String |
| `enclosure.financialTransaction.debtRepaymentPaidCash.lastYear` | 去年数据 | String |
| `enclosure.financialTransaction.debtRepaymentPaidCash.beforeYear` | 前年数据 | String |
| `enclosure.financialTransaction.debtRepaymentPaidCash.tyaYear` | 大前年数据 | String |
| `enclosure.financialTransaction.financingOutflowTotal` | 筹资活动现金流出小计 | Object |
| `enclosure.financialTransaction.financingOutflowTotal.thisYear` | 今年数据 | String |
| `enclosure.financialTransaction.financingOutflowTotal.lastYear` | 去年数据 | String |
| `enclosure.financialTransaction.financingOutflowTotal.beforeYear` | 前年数据 | String |
| `enclosure.financialTransaction.financingOutflowTotal.tyaYear` | 大前年数据 | String |
| `enclosure.financialTransaction.netCashFlowFromFinancingActivities` | 筹资活动产生的现金流量净额 | Object |
| `enclosure.financialTransaction.netCashFlowFromFinancingActivities.thisYear` | 今年数据 | String |
| `enclosure.financialTransaction.netCashFlowFromFinancingActivities.lastYear` | 去年数据 | String |
| `enclosure.financialTransaction.netCashFlowFromFinancingActivities.beforeYear` | 前年数据 | String |
| `enclosure.financialTransaction.netCashFlowFromFinancingActivities.tyaYear` | 大前年数据 | String |
| `enclosure.financialTransaction.netIncreaseCashEq` | 五、现金及现金等价物净增加额 | Object |
| `enclosure.financialTransaction.netIncreaseCashEq.thisYear` | 今年数据 | String |
| `enclosure.financialTransaction.netIncreaseCashEq.lastYear` | 去年数据 | String |
| `enclosure.financialTransaction.netIncreaseCashEq.beforeYear` | 前年数据 | String |
| `enclosure.financialTransaction.netIncreaseCashEq.tyaYear` | 大前年数据 | String |
| `enclosure.financialTransaction.beginCashEqBal` | 加:期初现金及现金等价物余额 | Object |
| `enclosure.financialTransaction.beginCashEqBal.thisYear` | 今年数据 | String |
| `enclosure.financialTransaction.beginCashEqBal.lastYear` | 去年数据 | String |
| `enclosure.financialTransaction.beginCashEqBal.beforeYear` | 前年数据 | String |
| `enclosure.financialTransaction.beginCashEqBal.tyaYear` | 大前年数据 | String |
| `enclosure.financialTransaction.endCashEqBal` | 六、期末现金及现金等价物余额 | Object |
| `enclosure.financialTransaction.endCashEqBal.thisYear` | 今年数据 | String |
| `enclosure.financialTransaction.endCashEqBal.lastYear` | 去年数据 | String |
| `enclosure.financialTransaction.endCashEqBal.beforeYear` | 前年数据 | String |
| `enclosure.financialTransaction.endCashEqBal.tyaYear` | 大前年数据 | String |
| `enclosure.monthlyOperationReport` | 附件二:企业经营月报总览 | Object |
| `enclosure.monthlyOperationReport.period` | 取数周期 | String |
| `enclosure.monthlyOperationReport.monthlyReportDetail` | 企业经营月报总览 | Array |
| `enclosure.monthlyOperationReport.monthlyReportDetail.date` | 月份 | String |
| `enclosure.monthlyOperationReport.monthlyReportDetail.outValidInvoice` | 销项有效发票 | Object |
| `enclosure.monthlyOperationReport.monthlyReportDetail.outValidInvoice.fpAmt` | 发票金额 | Number |
| `enclosure.monthlyOperationReport.monthlyReportDetail.outValidInvoice.fpCount` | 份数 | Integer |
| `enclosure.monthlyOperationReport.monthlyReportDetail.outValidRedInvoice` | 销项红冲发票 | Object |
| `enclosure.monthlyOperationReport.monthlyReportDetail.outValidRedInvoice.fpAmt` | 发票金额 | Number |
| `enclosure.monthlyOperationReport.monthlyReportDetail.outValidRedInvoice.fpCount` | 份数 | Integer |
| `enclosure.monthlyOperationReport.monthlyReportDetail(voidInvoice` | 销项作废发票 | Object |
| `enclosure.monthlyOperationReport.monthlyReportDetail(voidInvoice.fpAmt` | 发票金额 | Number |
| `enclosure.monthlyOperationReport.monthlyReportDetail(voidInvoice.fpCount` | 份数 | Integer |
| `enclosure.monthlyOperationReport.monthlyReportDetail.incomeValidInvoice` | 进项有效发票 | Object |
| `enclosure.monthlyOperationReport.monthlyReportDetail.incomeValidInvoice.fpAmt` | 发票金额 | Number |
| `enclosure.monthlyOperationReport.monthlyReportDetail.incomeValidInvoice.fpCount` | 份数 | Integer |
| `enclosure.monthlySalesAndUtilitiesList` | 附件三:月开票销售额与水电运费详情 | Array |
| `enclosure.monthlySalesAndUtilitiesList.months` | 月份 | String |
| `enclosure.monthlySalesAndUtilitiesList.sales` | 销售额 | String |
| `enclosure.monthlySalesAndUtilitiesList.waterFee` | 水费 | String |
| `enclosure.monthlySalesAndUtilitiesList.electricityBill` | 电费 | String |
| `enclosure.monthlySalesAndUtilitiesList.freight` | 运费 | String |
| `enclosure.monthlySalesAndUtilitiesList.gasFee` | 燃气费 | String |
| `enclosure.associatedEnterpriseList` | 附件四:关联企业情况(完整) | Array |
| `enclosure.associatedEnterpriseList.companyName` | 企业名称 | String |
| `enclosure.associatedEnterpriseList.contributionRatio` | 出资比例 | String |
| `enclosure.associatedEnterpriseList.associated` | 关联关系 | String |
| `enclosure.associatedEnterpriseList.registerCapital` | 注册资本 | String |
| `enclosure.associatedEnterpriseList.regCapitalCurrency` | 货币种类 | String |
| `enclosure.associatedEnterpriseList.legalPersonName` | 法定代表人 | String |
| `enclosure.associatedEnterpriseList.establishmentDate` | 成立日期 | String |
| `enclosure.associatedEnterpriseList.industry` | 所属行业 | String |
| `enclosure.changeInformationList` | 附件五:企业变更信息(完整) | Array |
| `enclosure.changeInformationList.beforeInfo` | 变更前内容 | String |
| `enclosure.changeInformationList.afterInfo` | 变更后内容 | String |
| `enclosure.changeInformationList.changeDate` | 变更日期 | String |
| `enclosure.changeInformationList.projectName` | 变更项目 | String |
### 产业链相关风险 (supplyChainRisk)
| 字段路径 | 中文说明 | 文档类型 |
| --- | --- | --- |
| `supplyChainRisk` | 产业链相关风险 | Object |
| `supplyChainRisk.trees` | 商品链 | Array |
| `supplyChainRisk.trees.key` | 根节点,没什么用 | String |
| `supplyChainRisk.trees.top` | 代表是第一个主营商品 | Integer |
| `supplyChainRisk.trees.data` | 数据 | Object |
| `supplyChainRisk.trees.data.up` | 上游信息 | Array |
| `supplyChainRisk.trees.data.up.name` | 商品名称 | String |
| `supplyChainRisk.trees.data.up.specs` | 规格型号 | String |
| `supplyChainRisk.trees.data.up.up` | 上游商品 | Array |
| `supplyChainRisk.trees.data.down` | 下游信息 | Array |
| `supplyChainRisk.trees.data.down.name` | 商品名称 | String |
| `supplyChainRisk.trees.data.down.specs` | 规格型号 | String |
| `supplyChainRisk.trees.data.down.down` | 下游商品 | Array |
| `supplyChainRisk.trees.data.name` | 主商品名 | String |
| `supplyChainRisk.trees.data.specs` | 规格型号 | String |
| `supplyChainRisk.mainProductMarketShare` | 主要产品市场份额 | Array |
| `supplyChainRisk.authorizedSalesAnalysis` | 授权企业主营商品销售分析 | Array |
| `supplyChainRisk.authorizedSalesAnalysis.name` | 主营商品名称 | String |
| `supplyChainRisk.authorizedSalesAnalysis.total` | 年销售量 | String |
| `supplyChainRisk.authorizedSalesAnalysis.specs` | 计量单位 | String |
| `supplyChainRisk.authorizedSalesAnalysis.unitPrice` | 销售均价(元) | String |
| `supplyChainRisk.authorizedSalesAnalysis.provinces` | 主要销售地 | String |
| `supplyChainRisk.authorizedSalesAnalysis.provinceNum` | 主要销售地竞品企业数量 | String |
| `supplyChainRisk.authorizedSalesAnalysis.totalNum` | 全国竞品企业数量 | String |
| `supplyChainRisk.authorizedSalesAnalysis.children` | 子级 | Array |
| `supplyChainRisk.demandTrendAnalysis` | 主要销售地需求量趋势 | Array |
| `supplyChainRisk.demandTrendAnalysis.name` | 主营商品名称 | String |
| `supplyChainRisk.demandTrendAnalysis.trend` | 月均需求量趋势 | String |
| `supplyChainRisk.demandTrendAnalysis.msg` | 市场风险分析 | String |
| `supplyChainRisk.authorizedPurchaseAnalysis` | 授权企业主要采购需求分析 | Array |
| `supplyChainRisk.authorizedPurchaseAnalysis.name` | 主要采购商品名称 | String |
| `supplyChainRisk.authorizedPurchaseAnalysis.total` | 年采购量 | String |
| `supplyChainRisk.authorizedPurchaseAnalysis.specs` | 计量单位 | String |
| `supplyChainRisk.authorizedPurchaseAnalysis.unitPrice` | 销售均价(元) | String |
| `supplyChainRisk.authorizedPurchaseAnalysis.provinces` | 主要采购地 | String |
| `supplyChainRisk.authorizedPurchaseAnalysis.provinceNum` | 主要采购地同业竞品企业数量 | String |
| `supplyChainRisk.authorizedPurchaseAnalysis.totalNum` | 全国同业竞品企业数量 | String |
| `supplyChainRisk.authorizedPurchaseAnalysis.cycle` | 采购周期(月) | String |
| `supplyChainRisk.authorizedPurchaseAnalysis.children` | 子集 | Array |
| `supplyChainRisk.supplyTrendAnalysis` | 主要采购地供应量趋势 | Array |
| `supplyChainRisk.supplyTrendAnalysis.name` | 主要采购商品名称 | String |
| `supplyChainRisk.supplyTrendAnalysis.trend` | 月均产量趋势 | String |
| `supplyChainRisk.supplyTrendAnalysis.msg` | 供应风险分析 | String |
| `supplyChainRisk.productPriceTrendAnalysis` | 主营商品对应产成品价格走势 | Object |
| `supplyChainRisk.productPriceTrendAnalysis.axis` | x轴 | Array |
| `supplyChainRisk.productPriceTrendAnalysis.msg` | 说明 | String |
| `supplyChainRisk.productPriceTrendAnalysis.data` | 商品价格 | Object |
| `supplyChainRisk.productPriceTrendAnalysis.data.name` | 商品名称 | String |
| `supplyChainRisk.productPriceTrendAnalysis.data.price` | 价格列表 | Array |
| `supplyChainRisk.productPriceTrendAnalysis.data.down` | 下级产品 | Array |
| `supplyChainRisk.productPriceTrendAnalysis.priceAnalysisTables` | 表格数据 | Array |
| `supplyChainRisk.commodityPriceTrendForecast` | 主营商品未来价格趋势预测 | Object |
| `supplyChainRisk.commodityPriceTrendForecast.data` | 消息内容 | String |
| `supplyChainRisk.commodityMaterialPriceAnalysis` | 主营商品对应原材料价格走势 | Object |
| `supplyChainRisk.commodityMaterialPriceAnalysis.axis` | x轴 | Array |
| `supplyChainRisk.commodityMaterialPriceAnalysis.msg` | 说明 | String |
| `supplyChainRisk.commodityMaterialPriceAnalysis.data` | 商品价格 | Array |
| `supplyChainRisk.commodityMaterialPriceAnalysis.data.name` | 商品名称 | String |
| `supplyChainRisk.commodityMaterialPriceAnalysis.data.price` | 价格列表 | Array |
| `supplyChainRisk.commodityMaterialPriceAnalysis.data.down` | 下级产品 | Array |
| `supplyChainRisk.commodityMaterialPriceAnalysis.priceAnalysisTables` | 表格数据 | Array |
| `supplyChainRisk.materialPriceForecast` | 原材料未来价格趋势预测 | Object |
| `supplyChainRisk.materialPriceForecast.data` | 消息内容 | String |
| `supplyChainRisk.giniCoefficientTrendAnalysis` | 行业销售额基尼系数趋势 | Object |
| `supplyChainRisk.giniCoefficientTrendAnalysis.years` | 年份 | Array |
| `supplyChainRisk.giniCoefficientTrendAnalysis.giniCoefficient` | 基尼系数 | Array |
| `supplyChainRisk.top3MainProductMarketTrend` | top3主营商品市场走势 | Object |
| `supplyChainRisk.top3MainProductMarketTrend.top1Name` | top1商品名称 | String |
| `supplyChainRisk.top3MainProductMarketTrend.top1Proportion` | top1商品占比 | String |
| `supplyChainRisk.top3MainProductMarketTrend.top1GrowthType` | top1商品 | String |
| `supplyChainRisk.top3MainProductMarketTrend.top2Name` | top2商品名称 | String |
| `supplyChainRisk.top3MainProductMarketTrend.top2Proportion` | top2商品占比 | String |
| `supplyChainRisk.top3MainProductMarketTrend.top2GrowthType` | top2商品波动类型 | String |
| `supplyChainRisk.top3MainProductMarketTrend.top3Name` | top1商品名称 | String |
| `supplyChainRisk.top3MainProductMarketTrend.top3Proportion` | top2商品占比 | String |
| `supplyChainRisk.top3MainProductMarketTrend.top3GrowthType` | top3商品波动类型 | String |
| `supplyChainRisk.grossMarginAnalysis` | 毛利水平分析 | Array |
| `supplyChainRisk.grossMarginAnalysis.quarter` | 季度 | String |
| `supplyChainRisk.grossMarginAnalysis.grossProfitMargin` | 企业毛利率 | String |
| `supplyChainRisk.grossMarginAnalysis.median` | 行业毛利率中位值 | String |
Q: 如何开始使用该API接口?
A: 您需要先在我们的平台注册账号,然后在控制台中开通对应的API服务,获取调用凭证后即可开始集成使用。
Q: 计费方式是怎样的?
A: 我们采用按调用次数计费的方式,每次调用 ¥39.8,充值不同额度可享受相应的优惠。您可以根据业务需求选择适合的充值方案,也支持定制套餐,详情可联系商务人员咨询。
Q: 接口的调用频率和限制是什么?
A: 我们的接口不设调用频率限制,您可以根据实际业务需求进行调用,系统会自动根据您的请求进行处理。
Q: 数据安全性如何保障?
A: 我们采用HTTPS加密传输,所有API调用需要身份验证,数据存储符合国家相关法规要求,定期进行安全审计。
Q: 是否提供技术支持?
A: 是的,我们提供全方位的技术支持。您可以通过控制台内的工单系统提交问题,或联系您的客户经理获取技术支持,我们的专业团队会尽快为您解决问题。
响应示例
⏳
正在转换内容...
## 1. 申请报告
```http
POST /api/v1/QYGLWFQ3 HTTP/1.1
Host: api.haiyudata.com
Access-Id: YOUR_ACCESS_ID
Content-Type: application/json
{"data":"ENCRYPTED_REQUEST_DATA"}
```
加密前的业务内容:
```json
{
"out_order_no": "YOUR-ORDER-20260912-001",
"ent_name": "示例科技有限公司",
"notify_url": "https://your-domain.example/callbacks/hyapi"
}
```
申请响应外层:
```json
{
"code": 0,
"message": "成功",
"transaction_id": "APPLICATION_TRANSACTION_ID",
"data": "ENCRYPTED_SUBMISSION_DATA"
}
```
申请响应的 data 解密后:
```json
{
"order_id": "PLATFORM_ORDER_ID",
"out_order_no": "YOUR-ORDER-20260912-001",
"authorize_url": "https://www.wfq2020.com/authorization/?EXAMPLE_PARAMETERS",
"status": "awaiting_authorization"
}
```
`authorize_url` 为示意地址,实际使用申请响应中的完整链接。下文所有密文、流水号、企业及报告内容均为示例,不可直接作为真实请求使用。
## 2. 报告成功回调
平台向原 notify_url POST 以下 JSON:
```json
{
"code": 0,
"message": "成功",
"out_order_no": "YOUR-ORDER-20260912-001",
"transaction_id": "REPORT_NOTIFICATION_ID",
"product_code": "QYGLWFQ3",
"event_type": "report",
"data": "ENCRYPTED_FULL_REPORT_DATA"
}
```
data 解密后是完整报告根对象,以下仅截取封面字段演示层次,完整字段见“返回字段说明”:
```json
{
"coverage": {
"taxpayerId": "91310000XXXXXXXXXX",
"companyName": "示例科技有限公司",
"reportNo": "EXAMPLE-REPORT-NO",
"reportDate": "2026-09-12"
}
}
```
接收端保存完整解密内容并按 transaction_id 去重后返回 HTTP 200,例如 `{"code":0}`。
## 3. PDF 成功回调
同一 notify_url 接收另一条通知,业务订单号相同、通知流水不同:
```json
{
"code": 0,
"message": "成功",
"out_order_no": "YOUR-ORDER-20260912-001",
"transaction_id": "PDF_NOTIFICATION_ID",
"product_code": "QYGLWFQ3",
"event_type": "pdf",
"data": "ENCRYPTED_PDF_INFO_DATA"
}
```
data 解密后:
```json
{
"reportPdfUrl": "https://files.example/reports/example.pdf"
}
```
PDF URL 仅在加密的 data 内,不在通知未加密外层。接收后按业务订单号与之前报告关联,并同样返回 HTTP 2xx。
## 4. 订单失败回调
```json
{
"code": 2001,
"message": "具体处理失败原因",
"out_order_no": "YOUR-ORDER-20260912-002",
"transaction_id": "FAILED_REPORT_NOTIFICATION_ID",
"product_code": "QYGLWFQ3",
"event_type": "report",
"data": ""
}
```
不要解密空 data。记录失败原因后仍应返回 HTTP 2xx 确认已接收。
## 5. 查询进度
向 `/api/v1/QYGLWFQ3/query` 提交加密后的以下业务 JSON:
```json
{
"out_order_no": "YOUR-ORDER-20260912-001",
"include_report": false
}
```
查询外层响应:
```json
{
"code": 0,
"message": "成功",
"transaction_id": "QUERY_TRANSACTION_ID",
"data": "ENCRYPTED_QUERY_RESULT"
}
```
查询 data 解密后,报告仍在加工时示例:
```json
{
"order_id": "PLATFORM_ORDER_ID",
"out_order_no": "YOUR-ORDER-20260912-001",
"product_code": "QYGLWFQ3",
"status": "collecting",
"status_message": "已请求生成报告,等待加工完成通知",
"authorized": true,
"report_ready": false,
"generation_status": "requested",
"pdf_ready": false,
"pdf_status": "waiting",
"progress": {
"data_ready": true,
"report_processed": false,
"pdf_ready": false
},
"notify_status": "waiting",
"notify_attempts": 0,
"pdf_notify_status": "waiting",
"pdf_notify_attempts": 0,
"created_at": "2026-09-12T10:00:00+08:00"
}
```
## 6. 查询完整报告与 PDF
将 include_report 改为 true。以下示例假设报告及 PDF 已就绪,且两类通知均已送达;report 仅展示封面节选,实际返回完整报告:
```json
{
"order_id": "PLATFORM_ORDER_ID",
"out_order_no": "YOUR-ORDER-20260912-001",
"product_code": "QYGLWFQ3",
"status": "succeeded",
"status_message": "报告已完成",
"authorized": true,
"report_ready": true,
"generation_status": "report_processed",
"pdf_ready": true,
"pdf_status": "ready",
"pdf": {
"reportPdfUrl": "https://files.example/reports/example.pdf"
},
"progress": {
"data_ready": true,
"report_processed": true,
"pdf_ready": true
},
"notify_status": "delivered",
"notify_attempts": 1,
"pdf_notify_status": "delivered",
"pdf_notify_attempts": 1,
"created_at": "2026-09-12T10:00:00+08:00",
"report": {
"coverage": {
"taxpayerId": "91310000XXXXXXXXXX",
"companyName": "示例科技有限公司",
"reportNo": "EXAMPLE-REPORT-NO",
"reportDate": "2026-09-12"
}
}
}
```
## 7. 接收端处理顺序
1. 解析外层 JSON,检查 product_code、out_order_no、transaction_id 和 code。
2. 按 transaction_id 查重;已经可靠处理的通知直接返回 2xx。
3. code=0 时用本账号 HYAPI 密钥解密 data;event_type=report 保存报告,event_type=pdf 保存 reportPdfUrl。
4. code=2001 时保存订单失败原因,不尝试解密 data。
5. 将业务处理结果和通知幂等标记可靠保存后返回 2xx。尚未成功保存时返回非 2xx,让平台重试。
错误码说明
⏳
正在转换内容...
## 错误代码
| code | message |
|------|---------|
| 0 | 业务成功 |
| 1000 | 查询为空 |
| 1001 | 接口异常 |
| 1002 | 参数解密失败 |
| 1003 | 基础参数校验不正确 |
| 1004 | 未经授权的IP |
| 1005 | 缺少Access-Id |
| 1006 | 未经授权的AccessId |
| 1007 | 账户余额不足,无法请求 |
| 1008 | 未开通此产品 |
| 2001 | 业务失败 |