-- 周计数器 四点 CREATE TABLE `counter_week_four` ( `role_id` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT '角色id', `module` int(11) NOT NULL DEFAULT '0' COMMENT '类型', `sub_module` int(11) NOT NULL DEFAULT '0' COMMENT '功能子id', `type` bigint(20) NOT NULL DEFAULT '0', `count` int(11) NOT NULL COMMENT '数量', `other` varchar(1024) NOT NULL DEFAULT '' COMMENT '扩展数据', `refresh_time` int(11) NOT NULL COMMENT '刷新时间', PRIMARY KEY (`role_id`,`module`,`sub_module`,`type`), KEY `module` (`module`), KEY `sub_module` (`sub_module`), KEY `type` (`type`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='4点周计数器';