5,区域表
CREATE TABLE `5areas` (
`areald` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`parentld` int(11) NOT NULL COMMENT '父ID',
`areaName` varchar(100) NOT NULL COMMENT '地区名称',
`isShow` tinyint(4) NOT NULL DEFAULT '1' COMMENT '是否显示(0:是 1:否)',
`areaSort` int(11) NOT NULL DEFAULT '0' COMMENT '排序号',
`areaKey` char(10) NOT NULL COMMENT '地区首字母',
`area Type` tinyint(4) NOT NULL DEFAULT '1' COMMENT '级别标志(1:省 2:市 3:县区)',
`dataFlag` tinyint(4) NOT NULL DEFAULT '1' COMMENT '删除标志(-1:删除 1:有效)',
`create Time` datetime DEFAULT NULL COMMENT '创建时间',
PRIMARY KEY (`areald`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='区域表';
6,文章记录表
CREATE TABLE `6articles` (
`articleld` int(11) NOT NULL COMMENT '自增ID',
`catld` int(11) NOT NULL COMMENT '分类ID',
`article Title` varchar(200) NOT NULL COMMENT '文章标题',
`isShow` tinyint(4) NOT NULL DEFAULT '1' COMMENT '是否显示(0:隐藏 1: 显示)',
`articleContent` longtext NOT NULL COMMENT '文章内容',
`articleKey` varchar(200) DEFAULT NULL COMMENT '关键字',
`staffld` int(11) NOT NULL COMMENT '创建者',
`dataFlag` tinyint(4) NOT NULL DEFAULT '1' COMMENT '有效状态(1:有效 -1:无效)',
`create Time` datetime NOT NULL COMMENT '创建时间',
`solve` int(10) unsigned DEFAULT '0' COMMENT '觉得文章有帮助的次数',
`unsolve` int(10) unsigned DEFAULT '0' COMMENT '觉得文章没帮助的次数',
`coverimg` varchar(150) DEFAULT NULL COMMENT '文章封面图片',
`visitorNum` int(10) unsigned DEFAULT '0' COMMENT '浏览数',
`TypeStatus` int(10) DEFAULT '1' COMMENT '布局类型(1:左图右文 2:左文右图 3:上文下图 4:全文)',
`likeNum` int(10) DEFAULT '0' COMMENT '点赞数',
`catSort` int(11) DEFAULT '0' COMMENT '排序号',
`articleDesc` varchar(600) NOT NULL COMMENT '文章描述',
`isHide` tinyint(4) DEFAULT '0' COMMENT '是否隐藏不可编辑/删除的文章(1:是 0:否)',
PRIMARY KEY (`articleld`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='文章记录表';
7,文章分类表
CREATE TABLE `7article_cats` (
`catld` int(11) NOT NULL AUTO_INCREMENT COMMENT '自增ID',
`parentld` int(11) NOT NULL DEFAULT '0' COMMENT '父ID',
`catType` tinyint(4) NOT NULL DEFAULT '0' COMMENT '分类类型(0:普通类型 1:系统菜单)',
`isShow` tinyint(4) NOT NULL DEFAULT '1' COMMENT '是否显示(0:隐藏 1:显示)',
`catName` varchar(20) NOT NULL COMMENT '分类名称',
`catSort` int(11) NOT NULL COMMENT '排序号',
`dataFlag` tinyint(4) NOT NULL COMMENT '删除标志',
`create Time` datetime NOT NULL COMMENT '创建时间',
PRIMARY KEY (`catld`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='文章分类表';
8,商品属性表
CREATE TABLE `8attributes` (
`attrld` int(11) NOT NULL AUTO_INCREMENT 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 '属性类型(0:输入框 1:多选项 2:下拉框)',
`attrVal` text COMMENT '属性值',
`attrSort` int(11) NOT NULL DEFAULT '0' COMMENT '排序号',
`isShow` tinyint(4) DEFAULT '1' COMMENT '是否显示(1:显示 0:不显示',
`dataFlag` tinyint(4) NOT NULL DEFAULT '1' COMMENT '有效状态(1:有效 -1:无效)',
`create Time` datetime NOT NULL COMMENT '创建时间',
`shopld` int(11) DEFAULT NULL COMMENT '店铺ID(如果有值则说明是店铺属性)',
PRIMARY KEY (`attrld`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='商品属性表';