添加功能

This commit is contained in:
马宝龙
2026-07-14 16:48:51 +08:00
parent c8b2041bf4
commit 11a20d7309
18 changed files with 1423 additions and 296 deletions

View File

@@ -914,6 +914,39 @@ COMMENT
ON TABLE shz_data_dashboard.theme_key_group IS '重点群体主题库';
-- 经济指标主题库
CREATE TABLE shz_data_dashboard.theme_economy_indicator
(
indicator_time timestamp without time zone,
area_code character varying(50) COLLATE pg_catalog."default",
gdp_growth_rate numeric(10, 4),
cpi_yoy_rate numeric(10, 4),
pmi_index numeric(10, 4)
)
;
ALTER TABLE shz_data_dashboard.theme_economy_indicator
OWNER TO sysdba;
COMMENT
ON COLUMN shz_data_dashboard.theme_economy_indicator.indicator_time IS '指标时间';
COMMENT
ON COLUMN shz_data_dashboard.theme_economy_indicator.area_code IS '区划代码';
COMMENT
ON COLUMN shz_data_dashboard.theme_economy_indicator.gdp_growth_rate IS 'GDP增速';
COMMENT
ON COLUMN shz_data_dashboard.theme_economy_indicator.cpi_yoy_rate IS 'CPI同比';
COMMENT
ON COLUMN shz_data_dashboard.theme_economy_indicator.pmi_index IS 'PMI指数';
COMMENT
ON TABLE shz_data_dashboard.theme_economy_indicator IS '经济指标主题库';