1.position表
CREATE TABLE `wst_ad_psoitions` (
`positionld` int(11) NOT NULL COMMENT '自增id',
`position Type` tinyint(4) NOT NULL DEFAULT '0' COMMENT '广告类型',
`positionName` varchar(100) NOT NULL COMMENT '广告位置名称',
`positionWidth` int(11) NOT NULL DEFAULT '0' COMMENT '建议宽度',
`positionHeight` int(11) NOT NULL DEFAULT '0' COMMENT '建议高度',
`dataFlag` tinyint(4) NOT NULL DEFAULT '1' COMMENT '有效状态',
`positionCode` varchar(20) DEFAULT NULL COMMENT '广告位置码',
`apSort` int(11) NOT NULL COMMENT '排序号',
PRIMARY KEY (`positionld`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
2.区域表
CREATE TABLE `区域表wst_areas` (
`areald` int(11) NOT NULL COMMENT '自增id',
`parentid` int(11) NOT NULL COMMENT '父id',
`areaName` varchar(100) NOT NULL COMMENT '地区名称',
`isShow` tinyint(4) NOT NULL DEFAULT '1' COMMENT '是否显示',
`areaSort` int(11) NOT NULL DEFAULT '0' COMMENT '排序号',
`areaKey` char(10) NOT NULL COMMENT '地区首字母',
`areaType` tinyint(4) NOT NULL DEFAULT '1' COMMENT '级别标志',
`dataFlag` tinyint(4) NOT NULL DEFAULT '1' COMMENT '删除标志',
`create Time` datetime DEFAULT NULL COMMENT '创建时间',
PRIMARY KEY (`areald`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
3.商品属性表
CREATE TABLE `商品属性表wst_attributes` (
`attrld` int(11) NOT NULL COMMENT '自增id',
`goodsCatld` int(11) NOT NULL DEFAULT '0' COMMENT '最后一级商品分类id',
`goodsCatPath` varchar(100) NOT NULL COMMENT '商品分类路径',
`attrName` varchar(100) NOT NULL COMMENT '属性名称',
`attrType` tinyint(4) NOT NULL DEFAULT '0' COMMENT '属性类型',
`attrVal` text COMMENT '属性值',
`attrSort` int(11) NOT NULL DEFAULT '0' COMMENT '排序号',
`isShow` tinyint(4) DEFAULT '1' COMMENT '是否显示',
`dataFlag` tinyint(4) NOT NULL DEFAULT '1' COMMENT '有效状态',
`create Time` datetime NOT NULL COMMENT '创建时间',
`shopld` int(11) DEFAULT '0' COMMENT '店铺id',
PRIMARY KEY (`attrld`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;