小說+有聲讀物+自導自演的視頻
1.網站采集功能,可采集任何小說網站
2、前臺模板自適應(PC、手機、平板自動適應)
3、搜索聯想功能
4、書架功能
5、評論功能
6、會員功能
7、最近閱讀功能
8、頂踩功能
9、小說管理功能
10、自適應小說閱讀器
11、模版標簽功能
12、用戶管理
13、API接口
14、支持小說多條件篩選
15、文章頻道功能
16、后臺智能添加更改廣告
17、運行速度快、性能高(支持生成靜態緩存、支持memcache緩存、文件緩存)
18、首頁輪播系統
19、友情鏈接管理系統
20、數據庫備份還原系統
21、數據庫管理系統
22、小說章節視頻投資
除去一下表,還有廣告輪播表、配置表、會員組表,模板表、采集表、定時任務表等
評論表
```
/*
Navicat MySQL Data Transfer
Source Server : novel
Source Server Version : 50734
Source Host : 8.136.216.46:3306
Source Database : novel
Target Server Type : MYSQL
Target Server Version : 50734
File Encoding : 65001
Date: 2021-10-06 19:13:27
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for ky_comment
-- ----------------------------
DROP TABLE IF EXISTS `ky_comment`;
CREATE TABLE `ky_comment` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`content` text NOT NULL,
`create_time` int(11) unsigned NOT NULL DEFAULT '0',
`uid` int(11) unsigned NOT NULL DEFAULT '0',
`status` tinyint(2) NOT NULL DEFAULT '1',
`up` int(11) unsigned DEFAULT '0',
`pid` int(11) unsigned DEFAULT '0',
`mid` int(11) unsigned DEFAULT '0',
`type` char(10) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='評論表';
```
用戶書架表
```
/*
Navicat MySQL Data Transfer
Source Server : novel
Source Server Version : 50734
Source Host : 8.136.216.46:3306
Source Database : novel
Target Server Type : MYSQL
Target Server Version : 50734
File Encoding : 65001
Date: 2021-10-06 19:10:34
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for ky_bookshelf
-- ----------------------------
DROP TABLE IF EXISTS `ky_bookshelf`;
CREATE TABLE `ky_bookshelf` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL DEFAULT '0' COMMENT '用戶id',
`novel_id` int(11) unsigned NOT NULL DEFAULT '0',
`chapter_id` int(11) unsigned NOT NULL DEFAULT '0',
`chapter_key` char(20) DEFAULT NULL,
`status` tinyint(3) NOT NULL DEFAULT '1' COMMENT '數據狀態',
`create_time` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '創建時間',
`update_time` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '更新時間',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='用戶書架';
```
小說表和章節表
```
/*
Navicat MySQL Data Transfer
Source Server : novel
Source Server Version : 50734
Source Host : 8.136.216.46:3306
Source Database : novel
Target Server Type : MYSQL
Target Server Version : 50734
File Encoding : 65001
Date: 2021-10-06 19:09:18
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for ky_novel
-- ----------------------------
DROP TABLE IF EXISTS `ky_novel`;
CREATE TABLE `ky_novel` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`category` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '所屬分類',
`title` char(80) NOT NULL DEFAULT '' COMMENT '名稱',
`author` char(120) DEFAULT NULL COMMENT '作者',
`pic` varchar(255) DEFAULT NULL COMMENT '圖片',
`content` text COMMENT '說明',
`tag` varchar(255) DEFAULT NULL COMMENT '標簽',
`up` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT '頂',
`down` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT '踩',
`hits` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '瀏覽數量',
`rating` char(10) NOT NULL DEFAULT '0' COMMENT '評分',
`rating_count` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '評分人數',
`serialize` tinyint(2) DEFAULT '0' COMMENT '連載',
`favorites` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '收藏',
`position` tinyint(2) unsigned NOT NULL DEFAULT '0' COMMENT '推薦位',
`template` varchar(100) DEFAULT NULL COMMENT '模板',
`link` varchar(255) DEFAULT NULL COMMENT '外鏈地址',
`create_time` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '創建時間',
`update_time` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '更新時間',
`reurl` char(255) DEFAULT NULL COMMENT '來源',
`status` tinyint(2) NOT NULL DEFAULT '1' COMMENT '狀態',
`hits_day` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '日瀏覽',
`hits_week` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '周瀏覽',
`hits_month` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '月瀏覽',
`hits_time` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '瀏覽時間',
`word` int(11) DEFAULT '0' COMMENT '字數',
`recommend` int(11) DEFAULT '0' COMMENT '推薦票',
`sole` tinyint(2) NOT NULL DEFAULT '3' COMMENT '0:未審核,1:提交審核,2:已審核,3:非獨家',
`author_id` int(11) DEFAULT NULL COMMENT '作者ID',
PRIMARY KEY (`id`),
KEY `title` (`title`),
KEY `reurl` (`reurl`)
) ENGINE=MyISAM AUTO_INCREMENT=9576 DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='小說表';
-- ----------------------------
-- Table structure for ky_novel_chapter
-- ----------------------------
DROP TABLE IF EXISTS `ky_novel_chapter`;
CREATE TABLE `ky_novel_chapter` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`novel_id` int(11) unsigned NOT NULL DEFAULT '0',
`source` varchar(255) NOT NULL DEFAULT '' COMMENT '源名稱',
`chapter` longtext COMMENT '內容',
`status` tinyint(2) NOT NULL DEFAULT '1' COMMENT '狀態',
`reurl` char(255) DEFAULT NULL COMMENT '來源',
`collect_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '采集id',
`run_time` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '運行時間',
`updated` varchar(255) DEFAULT NULL COMMENT '最新內容',
PRIMARY KEY (`id`),
KEY `novel_id` (`novel_id`),
KEY `status` (`status`),
KEY `collect_id` (`collect_id`)
) ENGINE=MyISAM AUTO_INCREMENT=21771 DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='小說章節';
```