**请注意:该表不是日频数据,不能直接获取作为因子数据。该数据适合对财务数据有深入研究的用户使用,请详细阅读后续文档!** **若想获取日频财务因子,请使用 cn_stock_factors_financial_items 和 cn_stock_factors_financial_indicators 数据表** * cn_stock_factors_financial_items: https://bigquant.com/data/datasources/cn_stock_factors_financial_items * cn_stock_factors_financial_indicators: https://bigquant.com/data/datasources/cn_stock_factors_financial_indicators # 一、数据简介 上市公司会通过以下途径更新财务数据: * 定期报告中首次披露财务数据:上市公司在会计周期结束后会披露相关财务数据。 * 定期报告中附带以往财务数据:上市公司在定期报告中除了披露当期财务数据外,也会附带去年同期或去年年报的财务数据,极少数公司会在此时修改过往财务数据。 * 发布财务更正公告:部分上市公司在首次披露财务数据后,会再次发布相关公告对以往的财务数据进行修改。 因此,平台利用 cn_stock_financial_changedate 这张表记录上市公司在何时更新或发布过相关的财务数据 * 数据起始时间:2005-01-01 * 数据更新频率:不定期,当上市公司发布相关公告时更新 * 表主键如下: | 关键字 | 释意 | | --- | --- | | changedate | 变更日期 | | instrument | 股票代码 | | report_date | 财务报告期,规则见后文“财务通用知识” | | statement_type | 报表类型,balance_sheet指资产负债表、cash_flow指现金流量表、income指利润表 | # 二、举例说明 ```python import dai import pandas as pd dai.query(""" SELECT * FROM cn_stock_financial_changedate WHERE instrument = '688396.SH' AND report_date IN ('2020-03-31') """,).df() ``` 当你平台调用上述代码,会得到以下内容: {{cn_stock_financial_changedate_demo}} 上表数据读取了 华润微(688396.SH)的 2020年一季报(report_date=2020-03-31)数据,从上表数据可以看出: * 资产负债表(statement_type=balance_sheet):该数据最早于2020-04-23公布,属于首次披露;2020-04-24对其进行更正,属于更正公告。 * 利润表 & 现金流量表:除了与资产负债表相同的两个变更日期外,利润表和现金流量表还在2021年4月30日有相关数据披露,主要是因为在2021-04-30这一天公布2020年年报数据,同时附带了2020年一季报的利润表和现金流量表数据。 **上述逻辑可以通过查阅相关财报公告得到确认。** # 【通用知识-原始财务数据】一、财务报表基础 上市公司披露的财务报表主要包括资产负债表、利润表、现金流量表和所有者权益变动表。这些报表从不同角度反映了企业的财务状况、经营成果和现金流量: * **资产负债表** 反映了企业在某一特定日期的资产、负债和所有者权益情况。它揭示了企业的资产规模及其结构,负债的规模及其结构,以及所有者权益的构成情况。 * **利润表** 展示了企业在一定会计期间的经营成果,即利润或亏损情况。它分类列示了企业的收入、费用和利润,帮助投资者了解企业的盈利能力和经营效率。 * **现金流量表** 反映了企业在一定会计期间现金和现金等价物的流入和流出情况。它分为经营活动、投资活动和筹资活动三个部分,弥补了资产负债表和利润表的不足,提供了企业现金流动的详细信息。 * **所有者权益变动表** 展示了构成所有者权益的各组成部分当期的增减变动情况。它帮助投资者了解企业所有者权益的变化情况,评估企业的资本结构和财务状况。 一般来说,上市公司被要求在一年内披露四次财务报表,分别是: * 一季报:详细记录了企业当年1月至3月的财务情况,上市公司必须在每个会计年度结束之日起四个月内编制完成并披露,通常在次年的1月1日至4月30日之间进行披露。 * 半年报:详细记录了企业当年1月至6月的财务情况,上市公司在半年度结束后两个月内完成并披露,通常在次年的7月1日至8月30日之间进行披露。 * 三季报:详细记录了企业当年1月至9月的财务情况,在每个会计年度前三个月结束后的一个月内编制完成并披露,通常在次年的4月1日至4月30日之间进行披露。 * 年报:详细记录了企业当年1月至12月的财务情况,在每个会计年度前九个月结束后的一个月内编制完成并披露,通常在次年的10月1日至10月31日之间进行披露。 在 BigQuant 平台上,我们通常用date 或者 changedate 表示财报变更日期,即上市公司披露财报的公告日;用report_date 表示报告期,即这一条数据来自来个报告期,分别有以下几个值: * xxxx-03-31 表示xxxx年的一季报,比如:2024-03-31 指 2024年一季报。 * xxxx-06-30 表示xxxx年的半年报,比如:2024-06-30 指 2024年半年报。 * xxxx-09-30 表示xxxx年的三季报,比如:2024-09-30 指 2024年三季报。 * xxxx-12-31 表示xxxx年的年报,比如:2024-12-31 指 2024年年报。 # 【通用知识-原始财务数据】二、PIT (Point in Time) 上市公司除了正常披露财务报表外,后续会时常对历史财务数据进行修正,因此在量化投资领域,我们加工财务数据时不能只用最新修正后的财务数据,而是要基于历史时间节点获取当时能获取的最新数据。PIT(Point In Time)数据指的是在某个时间点上,某个财务指标的取值。通常情况下,财务数据都是以报告期为单位披露的,即公司会在一定时间间隔(如每季度、每半年或每年)内披露其财务报表,报表中包含各项财务指标的取值。而PIT数据则是在某个时间点上,基于已公布的财务报表数据获取财务数据。 我们以真实的一只股票(002473.SZ)的财务数据为例,当您在平台上调用以下代码: ```python import dai import pandas as pd pd.set_option('display.float_format', '{:.2f}'.format) dai.query(""" SELECT date, instrument, report_date, change_type, total_current_assets FROM cn_stock_financial_balance_general_pit WHERE instrument='002473.SZ' AND report_date='2019-12-31' AND date>'2020-01-01' """).df() ``` 运行上述代码,我们能得到以下数据: | | date | instrument | report_date | change_type | total_current_assets | |---:|:-----------|:-------------|:------------|--------------:|-----------------------:| | 0 | 2020-04-30 | 002473.SZ | 2019-12-31 | 0 | 223449880.95 | | 1 | 2020-08-27 | 002473.SZ | 2019-12-31 | 1 | 228470428.90 | | 2 | 2020-10-26 | 002473.SZ | 2019-12-31 | 1 | 228470428.90 | | 3 | 2021-04-29 | 002473.SZ | 2019-12-31 | 1 | 228470428.90 | 该公司于2020年4月30日首次公布了2019年年报的财务数据,其披露的流动资产(total_current_assets)的值为223449880.95,但该公司又于2020年8月27日2019年年报的流动资产数据进行修正为228470428.90,因此该公司2019年年报的数据会有多条记录。**为什么date=[2020-08-27, 2020-10-26, 2021-04-29]的total_current_assets的值相同呢,这些重复重复有必要存在吗**?研究过财务报表的小伙伴知道,公司每披露某一财报期的数据,都会附带上年同期或者上年年末的财务数据进行对比,经过我们研究发现,**极少部分公司即使不发布数据修正公告,也可以通过这种方式对历史财务数据进行修改**,因此这些数据虽然大量是重复的,但我们认为都是必要存在的。 # 【通用知识-原始财务数据】三、财务科目字段 ## 资产负债表 | | 中文字段 | 英文字段 | |----:|:-------------------------------------------------|:--------------------------------------------------| | 0 | 货币资金 | moneytary_assets | | 1 | 结算备付金 | settlment_reserves | | 2 | 拆出资金 | loans_to_banks_and_fin_institutions | | 3 | 交易性金融资产 | tradable_fin_assets | | 4 | 衍生金融资产 | derivatives_fin_assets | | 5 | 应收票据 | notes_receivable | | 6 | 应收账款 | accounts_receivable | | 7 | 应收票据及应收账款 | notes_and_accounts_receivable | | 8 | 应收款项融资 | receivables_financing | | 9 | 预付款项 | prepayments | | 10 | 应收保费 | premiums_receivable | | 11 | 应收分保账款 | reinsurance_receivables | | 12 | 应收分保合同准备金 | receivable_reinsurance_contract_reserve | | 13 | 应收利息 | interest_receivable | | 14 | 应收股利 | dividends_receivable | | 15 | 其他应收款 | other_receivables | | 16 | 其他应收款合计 | other_receivables_sum | | 17 | 买入返售金融资产 | fin_assets_purchased_under_resale | | 18 | 存货 | inventories | | 19 | 合同资产 | contract_assets | | 20 | 持有待售资产 | assets_held_for_sale | | 21 | 一年内到期的非流动资产 | noncurr_assets_due_within_1y | | 22 | 其他流动资产 | other_current_assets | | 23 | 流动资产差额(特殊报表科目) | spec_diff_of_current_assets | | 24 | 流动资产差额(合计平衡科目) | totbal_diff_of_current_assets | | 25 | 流动资产合计 | total_current_assets | | 26 | 发放贷款及垫款 | loans_and_advances | | 27 | 以摊余成本计量的金融资产 | fin_assets_by_amortized_cost | | 28 | 以公允价值计量且其变动计入其他综合收益的金融资产 | fin_assets_by_fair_value | | 29 | 可供出售金融资产 | available_for_sale_fin_assets | | 30 | 持有至到期投资 | held_to_maturity_invesments | | 31 | 债权投资 | debt_investments | | 32 | 其他债权投资 | other_debt_investments | | 33 | 长期应收款 | longterm_receivables | | 34 | 长期股权投资 | longterm_equity_investments | | 35 | 其他权益工具投资 | other_equity_investments | | 36 | 其他非流动金融资产 | other_noncurr_fin_assets | | 37 | 投资性房地产 | investment_property | | 38 | 固定资产 | fixed_assets | | 39 | 固定资产合计 | fixed_assets_sum | | 40 | 在建工程 | construction_in_progress | | 41 | 在建工程合计 | construction_in_progress_sum | | 42 | 工程物资 | project_materials | | 43 | 固定资产清理 | fixed_assets_disposal | | 44 | 生产性生物资产 | productive_biological_assets | | 45 | 油气资产 | oil_and_gas_assets | | 46 | 使用权资产 | right_of_use_assets | | 47 | 无形资产 | intangible_assets | | 48 | 开发支出 | development_costs | | 49 | 商誉 | goodwill | | 50 | 长期待摊费用 | longterm_prepaid_expense | | 51 | 递延所得税资产 | deferred_tax_assets | | 52 | 其他非流动资产 | other_noncurr_assets | | 53 | 非流动资产差额(特殊报表科目) | spec_diff_of_noncurr_assets | | 54 | 非流动资产差额(合计平衡科目) | totbal_diff_of_noncurr_assets | | 55 | 非流动资产合计 | total_noncurr_assets | | 56 | 资产差额(特殊报表科目) | spec_diff_of_total_assets | | 57 | 资产差额(合计平衡科目) | totbal_diff_of_total_assets | | 58 | 资产总计 | total_assets | | 59 | 短期借款 | shortterm_borrowings | | 60 | 向中央银行借款 | borrowing_from_central_bank | | 61 | 吸收存款及同业存放 | deposits_from_banks_and_fin_instiutions | | 62 | 拆入资金 | loans_from_banks_and_fin_institutions | | 63 | 交易性金融负债 | tradable_fin_liabilities | | 64 | 衍生金融负债 | derivatives_fin_liabilities | | 65 | 应付票据 | notes_payable | | 66 | 应付账款 | accounts_payable | | 67 | 应付票据及应付账款 | notes_and_accounts_payable | | 68 | 预收款项 | advances | | 69 | 合同负债 | contract_liabilities | | 70 | 卖出回购金融资产款 | fin_assets_sold_under_resale | | 71 | 应付手续费及佣金 | fees_and_commissions_payable | | 72 | 应付职工薪酬 | employee_benefits_payable | | 73 | 应交税费 | taxes_and_levies_payable | | 74 | 应付利息 | interest_payable | | 75 | 应付股利 | dividends_payable | | 76 | 其他应付款 | other_payables | | 77 | 其他应付款合计 | other_payables_sum | | 78 | 应付分保账款 | reinsurance_payables | | 79 | 保险合同准备金 | insurance_contract_reserves | | 80 | 代理买卖证券款 | acting_trading_payables | | 81 | 代理承销证券款 | underwriting_payables | | 82 | 持有待售负债 | liabilities_held_for_sale | | 83 | 一年内到期的非流动负债 | noncurr_liabilities_due_within_1y | | 84 | 递延收益-流动负债 | deferred_income_current_liabilities | | 85 | 应付短期债券 | shortterm_bonds_payable | | 86 | 其他流动负债 | other_current_liabilities | | 87 | 流动负债差额(特殊报表科目) | spec_diff_of_current_liabilities | | 88 | 流动负债差额(合计平衡科目) | totbal_diff_of_current_liabilities | | 89 | 流动负债合计 | total_current_liabilities | | 90 | 长期借款 | longterm_borrowings | | 91 | 应付债券 | bonds_payable | | 92 | 永续债 | perpetual_bonds | | 93 | 优先股 | preference_shares | | 94 | 租赁负债 | lease_liabilities | | 95 | 长期应付款 | longterm_payables | | 96 | 长期应付款合计 | longterm_payables_sum | | 97 | 长期应付职工薪酬 | longterm_employee_benefits | | 98 | 专项应付款 | specific_payables | | 99 | 预计负债 | provisions | | 100 | 递延所得税负债 | deferred_tax_liabilities | | 101 | 递延收益-非流动负债 | deferred_income_noncurr_liabilities | | 102 | 其他非流动负债 | other_noncurr_liabilities | | 103 | 非流动负债差额(特殊报表科目) | spec_diff_of_noncurr_liabilities | | 104 | 非流动负债差额(合计平衡科目) | totbal_diff_of_noncurr_liabilities | | 105 | 非流动负债合计 | total_noncurr_liabilities | | 106 | 负债差额(特殊报表科目) | spec_diff_of_total_liabilities | | 107 | 负债差额(合计平衡科目) | totbal_diff_of_total_liabilities | | 108 | 负债合计 | total_liabilities | | 109 | 实收资本(或股本) | share_capital | | 110 | 资本公积 | capital_reserves | | 111 | 库存股 | treasury_shares | | 112 | 其他综合收益 | balance_othcom_income | | 113 | 其他权益工具 | other_equity_instruments | | 114 | 其中:优先股 | preference_of_other_equity_instruments | | 115 | 专项储备 | specific_reserve | | 116 | 盈余公积 | surplus_reserve | | 117 | 一般风险准备 | general_reserve | | 118 | 未分配利润 | undistributed_profit | | 119 | 外币报表折算差额 | balance_translation_diff_of_foreign_currency | | 120 | 归属于母公司所有者权益合计 | total_equity_to_parent_shareholders | | 121 | 少数股东权益 | minority_interests | | 122 | 股东权益差额(特殊报表科目) | spec_diff_of_shareholders_equity | | 123 | 股权权益差额(合计平衡科目) | totbal_diff_of_shareholders_equity | | 124 | 所有者权益合计 | total_owner_equity | | 125 | 负债及股东权益差额(特殊报表科目) | spec_diff_of_liabilities_and_shareholder_equity | | 126 | 负债及股东权益差额(合计平衡科目) | totbal_diff_of_liabilities_and_shareholder_equity | | 127 | 负债和所有者权益总计 | total_liabilities_and_owner_equity | ## 利润表 | | 中文字段 | 英文字段 | |---:|:-----------------------------------------------------------------|:-----------------------------------------------------| | 0 | 营业总收入 | total_operating_revenue | | 1 | 营业收入 | operating_revenue | | 2 | 利息收入 | interest_income | | 3 | 已赚保费 | insurance_premium_income | | 4 | 手续费及佣金收入 | fee_and_commission_income | | 5 | 营业总收入差额(特殊报表科目) | spec_diff_of_operating_revenue | | 6 | 营业总收入差额(合计平衡科目) | totbal_diff_of_operating_revenue | | 7 | 营业总成本 | total_operating_costs | | 8 | 营业成本 | operating_costs | | 9 | 利息支出 | interest_costs | | 10 | 手续费及佣金支出 | fee_and_commission_costs | | 11 | 退保金 | surrenders | | 12 | 赔付支出净额 | net_insurance_claims_paid | | 13 | 提取保险合同准备金净额 | net_amount_of_insurance_reserve | | 14 | 保单红利支出 | expense_on_policy_dividends | | 15 | 分保费用 | reinsurance_premium_expense | | 16 | 税金及附加 | taxes_and_levies | | 17 | 销售费用 | selling_epense | | 18 | 管理费用 | administrative_expense | | 19 | 研发费用 | research_and_development_expense | | 20 | 财务费用 | finance_expense | | 21 | 财务费用:利息费用 | fin_interest_expense | | 22 | 财务费用:利息收入 | fin_interest_income | | 23 | 资产减值损失 | asset_impairment_loss | | 24 | 信用减值损失 | credit_impairment_loss | | 25 | 营业总成本差额(特殊报表科目) | spec_diff_of_operating_costs | | 26 | 营业总成本差额(合计平衡科目) | totbal_diff_of_operating_costs | | 27 | 公允价值变动收益 | fair_value_chg_gain | | 28 | 投资收益 | invest_income | | 29 | 对联营企业和合营企业的投资收益 | invest_income_of_jv_and_associates | | 30 | 以摊余成本计量的金融资产终止确认收益 | income_derecognition_of_fin_assets_at_amortized_cost | | 31 | 净敞口套期收益 | net_income_of_open_hedge | | 32 | 汇兑收益 | exchange_gain | | 33 | 资产处置收益 | asset_disposal_income | | 34 | 其他收益 | other_income | | 35 | 营业利润差额(特殊报表科目) | spec_diff_of_operating_profit | | 36 | 营业利润差额(合计平衡科目) | totbal_diff_of_operating_profit | | 37 | 营业利润 | operating_profit | | 38 | 营业外收入 | nonoperating_income | | 39 | 非流动资产处置利得 | noncurr_assets_dispose_gain | | 40 | 营业外支出 | nonoperating_costs | | 41 | 非流动资产处置损失 | noncurr_assets_dispose_loss | | 42 | 利润总额差额(特殊报表科目) | spec_diff_of_total_profit | | 43 | 利润总额差额(合计平衡科目) | totbal_diff_of_total_profit | | 44 | 利润总额 | total_profit | | 45 | 所得税费用 | income_tax_expense | | 46 | 净利润差额(特殊报表科目) | spec_diff_of_net_profit | | 47 | 净利润差额(合计平衡科目) | totbal_diff_of_net_profit | | 48 | 净利润 | net_profit | | 49 | (一)持续经营净利润 | continuing_operation_net_profit | | 50 | (二)终止经营净利润 | discontinued_operation_net_profit | | 51 | 归属于母公司所有者的净利润 | net_profit_to_parent_shareholders | | 52 | 少数股东损益 | net_profit_to_minority | | 53 | 基本每股收益 | eps_basic | | 54 | 稀释每股收益 | eps_diluted | | 55 | 其他综合收益 | income_othcom_income | | 56 | 归属母公司所有者的其他综合收益 | othcom_income_to_parent_shareholders | | 57 | 以后不能重分类进损益的其他综合收益 | othcom_income_cannt_reclass | | 58 | 重新计量设定受益计划净负债或净资产的变动 | chg_by_remeasurements | | 59 | 权益法下在被投资单位不能重分类进损益的其他综合收益中享有的份额 | othcom_income_cannt_reclass_under_equity_method | | 60 | 其他以后不能重分类进损益 | other_cannt_reclass | | 61 | 其他权益工具投资公允价值变动 | other_equity_instruments_fair_value_chg | | 62 | 企业自身信用风险公允价值变动 | own_credit_risk_fair_value_chg | | 63 | 以后将重分类进损益的其他综合收益 | othcom_income_reclass | | 64 | 权益法下在被投资单位以后将重分类进损益的其他综合收益中享有的份额 | othcom_income_reclass_under_equity_method | | 65 | 可供出售金融资产公允价值变动损益 | available_for_sale_fin_assets_fair_value_chg | | 66 | 持有至到期投资重分类为可供出售金融资产损益 | gains_or_losses_from_htm_to_afs | | 67 | 现金流量套期损益的有效部分 | effective_of_gains_or_losses_on_cashflow_hedge | | 68 | 外币财务报表折算差额 | income_translation_diff_of_foreign_currency | | 69 | 其他以后将重分类进损益 | other_reclass | | 70 | 其他债权投资公允价值变动 | other_debt_investments_fair_value_chg | | 71 | 金融资产重分类计入其他综合收益的金额 | othcom_income_from_reclass_of_fin_assets | | 72 | 其他债权投资信用减值准备 | credit_impairment_of_other_debt_investments | | 73 | 现金流量套期储备 | cashflow_hedge_reserve | | 74 | 归属于少数股东的其他综合收益 | othcom_income_to_minority | | 75 | 综合收益总额 | total_comprehensive_income | | 76 | 归属于母公司股东的综合收益总额 | total_comprehensive_income_to_parent_shareholders | ## 现金流量表 | | 中文字段 | 英文字段 | |----:|:---------------------------------------------------------|:--------------------------------------------------| | 0 | 销售商品、提供劳务收到的现金 | cash_received_from_sales_and_services | | 1 | 客户存款和同业存放款项净增加额 | netinc_in_deposits | | 2 | 向中央银行借款净增加额 | netinc_in_borrowings_from_central_bank | | 3 | 向其他金融机构拆入资金净增加额 | netinc_in_loans_from_other_fin_institutions | | 4 | 收到原保险合同保费取得的现金 | cash_received_from_premiums | | 5 | 收到再保业务现金净额 | net_cash_received_from_reinsurance | | 6 | 保户储金及投资款净增加额 | netinc_in_insurance_deposits_and_invest | | 7 | 处置以公允价值计量且其变动计入当期损益的金融资产净增加额 | netinc_in_disposal_fin_assets | | 8 | 收取利息、手续费及佣金的现金 | cash_received_from_interests_fess_and_commissions | | 9 | 拆入资金净增加额 | netinc_in_loans_from_banks_and_fin_institutions | | 10 | 回购业务资金净增加额 | netinc_in_repurchase_transactions | | 11 | 收到的税费返还 | taxes_and_levies_rebates | | 12 | 收到其他与经营活动有关的现金 | cash_received_from_other_operating | | 13 | 经营活动现金流入差额(特殊报表科目) | spec_diff_of_cifoa | | 14 | 经营活动现金流入差额(合计平衡科目) | totbal_diff_of_cifoa | | 15 | 经营活动现金流入小计 | subtotal_cifoa | | 16 | 购买商品、接受劳务支付的现金 | cash_paid_for_goods_and_services | | 17 | 客户贷款及垫款净增加额 | netinc_in_loans_and_advances | | 18 | 存放中央银行和同业款项净增加额 | netinc_deposits_central_bank_interbank | | 19 | 支付原保险合同赔付款项的现金 | cash_paid_for_claims | | 20 | 支付利息、手续费及佣金的现金 | cash_paid_for_interests_fees_and_commissions | | 21 | 支付保单红利的现金 | cash_paid_for_policy_dividends | | 22 | 支付给职工以及为职工支付的现金 | cash_paid_for_employees | | 23 | 支付的各项税费 | cash_paid_for_taxes_and_levies | | 24 | 支付其他与经营活动有关的现金 | other_cofoa | | 25 | 经营活动现金流出差额(特殊报表科目) | spec_diff_of_cofoa | | 26 | 经营活动现金流出差额(合计平衡科目) | totbal_diff_of_cofoa | | 27 | 经营活动现金流出小计 | subtotal_cofoa | | 28 | 经营活动产生的现金流量净额差额(特殊报表科目) | spec_diff_of_net_cffoa | | 29 | 经营活动产生的现金流量净额差额(合计平衡科目) | totbal_diff_of_net_cffoa | | 30 | 经营活动产生的现金流量净额 | net_cffoa | | 31 | 收回投资收到的现金 | cash_received_from_disposal_investments | | 32 | 取得投资收益收到的现金 | return_on_investment | | 33 | 处置固定资产、无形资产和其他长期资产收回的现金净额 | net_cash_received_from_disposal_filt_assets | | 34 | 处置子公司及其他营业单位收到的现金净额 | net_cash_received_from_disposal_subsidiaries | | 35 | 收到其他与投资活动有关的现金 | cash_received_from_other_investing | | 36 | 投资活动现金流入差额(特殊报表科目) | spec_diff_of_cifia | | 37 | 投资活动现金流入差额(合计平衡科目) | totbal_diff_of_cifia | | 38 | 投资活动现金流入小计 | subtotal_cifia | | 39 | 购建固定资产、无形资产和其他长期资产支付的现金 | cash_paid_for_filt_assets | | 40 | 投资支付的现金 | cash_paid_for_investments | | 41 | 质押贷款净增加额 | netinc_in_pledge_loans | | 42 | 取得子公司及其他营业单位支付的现金净额 | cash_paid_by_acquiring_subsidiaries | | 43 | 支付其他与投资活动有关的现金 | cash_paid_for_other_investing | | 44 | 投资活动现金流出差额(特殊报表科目) | spec_diff_of_cofia | | 45 | 投资活动现金流出差额(合计平衡科目) | totbal_diff_of_cofia | | 46 | 投资活动现金流出小计 | subtotal_of_cofia | | 47 | 投资活动产生的现金流量净额差额(特殊报表科目) | spec_diff_of_net_cffia | | 48 | 投资活动产生的现金流量净额差额(合计平衡科目) | totbal_diff_of_net_cffia | | 49 | 投资活动产生的现金流量净额 | net_cffia | | 50 | 吸收投资收到的现金 | capital_contributions_received | | 51 | 子公司吸收少数股东投资收到的现金 | cash_received_by_subsidiaries_from_minority | | 52 | 取得借款收到的现金 | cash_received_from_borrowings | | 53 | 发行债券收到的现金 | cash_received_from_bond_issue | | 54 | 收到其他与筹资活动有关的现金 | cash_received_from_other_financing | | 55 | 筹资活动现金流入差额(特殊报表科目) | spec_diff_of_ciffa | | 56 | 筹资活动现金流入差额(合计平衡科目) | totbal_diff_of_ciffa | | 57 | 筹资活动现金流入小计 | subtotal_ciffa | | 58 | 偿还债务支付的现金 | cash_paid_for_debt_repayment | | 59 | 分配股利、利润或偿付利息支付的现金 | cash_paid_for_dividends_profits_interests | | 60 | 子公司支付给少数股东的股利、利润 | cash_paid_by_subsidiaries_to_minority | | 61 | 支付其他与筹资活动有关的现金 | cash_paid_for_other_financing | | 62 | 筹资活动现金流出差额(特殊报表科目) | spec_diff_of_coffa | | 63 | 筹资活动现金流出差额(合计平衡科目) | totbal_diff_of_coffa | | 64 | 筹资活动现金流出小计 | subtotal_of_coffa | | 65 | 筹资活动产生的现金流量净额差额(特殊报表科目) | spec_diff_of_net_cfffa | | 66 | 筹资活动产生的现金流量净额差额(合计平衡科目) | totbal_diff_of_net_cfffa | | 67 | 筹资活动产生的现金流量净额 | net_cfffa | | 68 | 汇率变动对现金及现金等价物的影响 | effect_of_exchange_chg_on_cce | | 69 | 直接法-现金及现金等价物净增加额差额(特殊报表科目) | spec_diff_of_netinc_in_cce | | 70 | 直接法-现金及现金等价物净增加额差额(合计平衡科目) | totbal_diff_of_netinc_in_cce | | 71 | 现金及现金等价物净增加额 | netinc_in_cce | | 72 | 期初现金及现金等价物余额 | cce_beginning | | 73 | 期末现金及现金等价物余额 | cce_ending | | 74 | 现金流量表-净利润 | net_profit_in_cashflow_sheet | | 75 | 资产减值准备 | asset_impairment_reserve | | 76 | 固定资产折旧、油气资产折耗、生产性生物资产折旧 | depreciation_of_fa_oga_pba | | 77 | 无形资产摊销 | amorization_of_intangible_assets | | 78 | 长期待摊费用摊销 | amortization_of_longterm_deferred_expenses | | 79 | 处置固定资产、无形资产和其他长期资产的损失 | loss_from_disposal_of_fa_ia_lta | | 80 | 固定资产报废损失 | loss_from_scraping_of_fixed_assets | | 81 | 公允价值变动损失 | loss_from_fair_value_chg | | 82 | 现金流量表-财务费用 | finance_expenses_in_cashflow_sheet | | 83 | 投资损失 | invest_loss | | 84 | 递延所得税资产减少 | decrease_in_deferred_tax_assets | | 85 | 递延所得税负债增加 | increase_in_deferred_tax_liabilities | | 86 | 存货的减少 | decrease_in_inventories | | 87 | 经营性应收项目的减少 | decrease_in_operating_receivables | | 88 | 经营性应付项目的增加 | increase_in_operating_payables | | 89 | 其他 | others_in_cashflow_sheet | | 90 | 间接法-经营活动现金流量净额差额(特殊报表科目) | spec_diff_of_net_cffoa_indirect | | 91 | 间接法-经营活动现金流量净额差额(合计平衡科目) | totbal_diff_of_net_cffoa_indirect | | 92 | 间接法-经营活动产生的现金流量净额 | net_cffoa_indirect | | 93 | 债务转为资本 | debt_transfer_to_capital | | 94 | 一年内到期的可转换公司债券 | conv_corp_bonds_within_1y | | 95 | 融资租入固定资产 | fin_lease_fixed_assets | | 96 | 现金的期末余额 | cash_balance_ending | | 97 | 现金的期初余额 | cash_balance_beginning | | 98 | 现金等价物的期末余额 | cce_balance_ending | | 99 | 现金等价物的期初余额 | cce_balance_beginning | | 100 | 间接法-现金及现金等价物净增加额差额(特殊报表科目) | spec_diff_of_netinc_in_cce_indirect | | 101 | 间接法-现金及现金等价物净增加额差额(合计平衡科目) | totbal_diff_of_netinc_in_cce_indirect | | 102 | 间接法-现金及现金等价物净增加额 | netinc_in_cce_indirect | | 103 | 信用减值损失 | credit_impairment_loss_in_cashflow_sheet |
财报变更日期 (cn_stock_financial_changedate)
数据描述: 该表记录了企业财务报表变更的具体日期,包括报告期、变更日期、报表类型以及证券代码。由于财务数据存在对历史进行调整更正的情况,因此单个报告期可能在多个不同的公告日有记录。
文档
用例
表结构
字段 | 字段类型 | 字段描述 |
report_date | timestamp[ns] | 报告期 |
instrument | string | 证券代码 |
changedate | string | 变更日期 |
statement_type | string | 报表类型 |
表名cn_stock_financial_changedate
起始时间:
最近更新时间: