CREATE TABLE `scores` (
`scoreId` int(11) NOT NULL COMMENT '自增ID',
`shopId` int(11) DEFAULT NULL COMMENT '门店ID',
`totalScore` int(11) DEFAULT NULL COMMENT '总评分',
`totaIUsers` int(11) DEFAULT NULL COMMENT '总评评分用户数',
`goodsScore` int(11) DEFAULT NULL COMMENT '商品评分',
`goodsUsers` int(11) DEFAULT NULL COMMENT '商品评分用户数',
`serviceScore` int(11) DEFAULT NULL COMMENT '服务评分',
`serviceUsers` int(11) DEFAULT NULL COMMENT '服务评分用户数',
`timeScore` int(11) DEFAULT NULL COMMENT '时效评分',
`timeUsers` int(11) DEFAULT NULL COMMENT '时效评分用户数',
PRIMARY KEY (`scoreId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;