CREATE TABLE `tb_risk_manage` (
`riskId` bigint(20) NOT NULL AUTO_INCREMENT,
`dateType` tinyint(4) NOT NULL DEFAULT '1' COMMENT '日期类型 1 日 2 周 3 月',
`registerUser` int(11) NOT NULL DEFAULT '0' COMMENT '注册用户数',
`activeUser` int(11) NOT NULL DEFAULT '0' COMMENT '活跃用户数',
`rechargeAmount` bigint(20) NOT NULL DEFAULT '0' COMMENT '充值金额',
`rechargeUsers` int(11) NOT NULL DEFAULT '0' COMMENT '充值用户数',
`firstRechargeAmount` int(11) NOT NULL DEFAULT '0' COMMENT '首充金额',
`payUser` int(11) NOT NULL DEFAULT '0' COMMENT '充值用户',
`firstRechargeUsers` int(11) NOT NULL DEFAULT '0' COMMENT '首充用户数',
`payNums` int(11) NOT NULL DEFAULT '0' COMMENT '支付成功订单数量',
`ARPU` int(11) NOT NULL DEFAULT '0' COMMENT '充值金额/ 活跃用户',
`ARPPU` int(11) NOT NULL DEFAULT '0' COMMENT '充值金额 / 付费用户',
`withdrawFamily` int(11) NOT NULL DEFAULT '0' COMMENT '家族提现',
`withdrawFamilyUser` int(11) NOT NULL DEFAULT '0' COMMENT '用户提现',
`nobleCost` int(11) NOT NULL DEFAULT '0' COMMENT '贵族消费',
`playWithCost` int(11) NOT NULL DEFAULT '0' COMMENT '陪玩消费',
`rewardRate` decimal(20,2) NOT NULL COMMENT '返奖率',
`userLotteryWin` bigint(20) NOT NULL DEFAULT '0' COMMENT '游戏中奖钻石',
`luckyGiftWin` bigint(20) NOT NULL DEFAULT '0' COMMENT '幸运礼物中奖星钻',
`luckyBagGiftWin` bigint(20) NOT NULL DEFAULT '0' COMMENT '背包幸运礼物中奖金币',
`userLotteryConsume` bigint(20) NOT NULL DEFAULT '0' COMMENT '抽奖活动消耗钻石',
`LuckyGiftConsume` bigint(20) NOT NULL DEFAULT '0' COMMENT '幸运礼物消耗星钻',
`luckyBagGiftConsume` bigint(20) NOT NULL DEFAULT '0' COMMENT '背包幸运礼物消耗星钻',
`status` int(11) NOT NULL DEFAULT '0' COMMENT '状态 0 正常 1 已忽略 2 已剔除 3异常数据待处理',
`startDate` int(11) NOT NULL DEFAULT '0' COMMENT '起始时间',
`endDate` int(11) NOT NULL DEFAULT '0' COMMENT '结束时间',
`riskFiled` text COLLATE utf8mb4_bin COMMENT '有风险的字段',
`extraData` text COLLATE utf8mb4_bin COMMENT '留存的平均数据',
PRIMARY KEY (`riskId`),
KEY `IDX_startDate_endDate` (`startDate`,`endDate`) USING BTREE COMMENT '时间索引'
) ENGINE=InnoDB AUTO_INCREMENT=303 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin;
风控数据生成与展示 房间流水细分, 增加统计项 处理举报用户的同时封禁用户 修复升级贵族后台历史记录显示问题