$npx -y skills add FTShare-Lab/FTShare-skills --skill economic-china-fiscal-revenue-monthlyGet China fiscal revenue monthly data (中国财政收入月度). Use when user asks about 中国财政收入, 财政收入月度, 财政收支, fiscal revenue, 当月同比环比, 累计财政收入.
| 1 | # 中国经济 - 财政收入(月度) |
| 2 | |
| 3 | ## 参数 |
| 4 | |
| 5 | 无需任何参数。 |
| 6 | |
| 7 | ## 用法 |
| 8 | |
| 9 | 直接执行: |
| 10 | |
| 11 | ```bash |
| 12 | python script/handler.py |
| 13 | ``` |
| 14 | |
| 15 | 脚本输出 JSON 数组,按时间倒序,每项含 `month`(如 2025年03月份)、`revenue_current`(当月财政收入)、`yoy`(当月同比 %)、`mom`(当月环比 %)、`cumulative`(累计)、`cumulative_yoy`(累计同比 %)、`unit`(亿元)、`currency`(CNY),以表格展示给用户。 |
| 16 | |
| 17 | ## 注意 |
| 18 | |
| 19 | - 返回按月份汇总,格式如「2025年03月份」 |
| 20 | - 数值单位见 `unit`(亿元),同比/环比单位为 % |
| 21 | - 列表已按时间倒序,最新月份在前 |