15
CREATE TABLE ` cat shops15` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`shopld` int(11) NOT NULL DEFAULT '0' COMMENT '店铺ID',
`catld` int(11) NOT NULL DEFAULT '0' COMMENT '所属分类ID',
`commissionRate` decimal(11,0) DEFAULT '0' COMMENT '商家店铺分类佣金比\n例',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
16
CREATE TABLE `charge items16` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`chargeMoney` int(11) DEFAULT '0' COMMENT '充值金额',
`giveMoney` decimal(11,0) DEFAULT '0' COMMENT '赠送金额',
`itemSort` int(11) DEFAULT '0' COMMENT '排序号',
`dataFlag` tinyint(4) DEFAULT '1' COMMENT '是否有效(1:有效 -1:删除)',
`createTime` datetime DEFAULT NULL COMMENT '创建时间',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;