SET NAMES utf8mb4; CREATE TABLE IF NOT EXISTS `country_dashboard_period_metric` ( `id` bigint NOT NULL AUTO_INCREMENT COMMENT '主键', `period_type` varchar(16) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '周期类型:DAY/WEEK/MONTH/ALL', `period_key` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '周期键', `period_name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '周期名称', `period_start_date` date DEFAULT NULL COMMENT '周期开始日期', `period_end_date` date DEFAULT NULL COMMENT '周期结束日期,开区间', `sys_origin` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '系统来源', `country_code` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'UNKNOWN' COMMENT '国家码', `country_name` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'UNKNOWN' COMMENT '国家名称', `country_new_user` bigint NOT NULL DEFAULT 0 COMMENT '新增用户数', `new_user_recharge` decimal(20,2) NOT NULL DEFAULT 0.00 COMMENT '新增用户充值', `official_recharge` decimal(20,2) NOT NULL DEFAULT 0.00 COMMENT '官方充值', `mifapay_recharge` decimal(20,2) NOT NULL DEFAULT 0.00 COMMENT 'MifaPay充值', `google_recharge` decimal(20,2) NOT NULL DEFAULT 0.00 COMMENT 'Google充值', `dealer_recharge` decimal(20,2) NOT NULL DEFAULT 0.00 COMMENT '代理充值', `salary_exchange` decimal(20,2) NOT NULL DEFAULT 0.00 COMMENT '工资兑换', `lucky_gift_total_flow` decimal(20,2) NOT NULL DEFAULT 0.00 COMMENT '幸运礼物流水', `lucky_gift_user` bigint NOT NULL DEFAULT 0 COMMENT '幸运礼物用户数', `lucky_gift_payout` decimal(20,2) NOT NULL DEFAULT 0.00 COMMENT '幸运礼物返奖', `game_total_flow` decimal(20,2) NOT NULL DEFAULT 0.00 COMMENT '游戏流水', `game_user` bigint NOT NULL DEFAULT 0 COMMENT '游戏用户数', `game_payout` decimal(20,2) NOT NULL DEFAULT 0.00 COMMENT '游戏返奖', `refreshed_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '最近刷新时间', `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`), UNIQUE KEY `uk_period_origin_country` (`period_type`, `period_key`, `sys_origin`, `country_code`), KEY `idx_origin_period` (`sys_origin`, `period_type`, `period_key`), KEY `idx_period_date` (`period_type`, `period_start_date`, `period_end_date`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='国家数据大屏周期预聚合'; CREATE TABLE IF NOT EXISTS `country_dashboard_period_user_metric` ( `id` bigint NOT NULL AUTO_INCREMENT COMMENT '主键', `period_type` varchar(16) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '周期类型:DAY/WEEK/MONTH/ALL', `period_key` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '周期键', `period_name` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '周期名称', `period_start_date` date DEFAULT NULL COMMENT '周期开始日期', `period_end_date` date DEFAULT NULL COMMENT '周期结束日期,开区间', `sys_origin` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '系统来源', `country_code` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'UNKNOWN' COMMENT '国家码', `country_name` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'UNKNOWN' COMMENT '国家名称', `user_id` bigint NOT NULL COMMENT '用户ID', `metric_type` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '人数指标类型', `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', PRIMARY KEY (`id`), UNIQUE KEY `uk_period_user_metric` (`period_type`, `period_key`, `sys_origin`, `country_code`, `user_id`, `metric_type`), KEY `idx_period_metric_country` (`period_type`, `period_key`, `sys_origin`, `metric_type`, `country_code`), KEY `idx_origin_user_metric` (`sys_origin`, `user_id`, `metric_type`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='国家数据大屏周期用户去重明细';