You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
1.7 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

/*
Navicat MySQL Data Transfer
Source Server : localhost
Source Server Version : 50725
Source Host : localhost:3306
Source Database : novel_plus
Target Server Type : MYSQL
Target Server Version : 50725
File Encoding : 65001
Date: 2020-06-15 15:06:55
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for crawl_single_task
-- ----------------------------
DROP TABLE IF EXISTS `crawl_single_task`;
CREATE TABLE `crawl_single_task` (
`id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT '',
`source_id` int(11) DEFAULT NULL COMMENT 'ID',
`source_name` varchar(50) DEFAULT NULL COMMENT '',
`source_book_id` varchar(255) DEFAULT NULL COMMENT 'ID',
`cat_id` int(11) DEFAULT NULL COMMENT 'ID',
`book_name` varchar(50) DEFAULT NULL COMMENT '',
`author_name` varchar(50) DEFAULT NULL COMMENT '',
`task_status` tinyint(1) DEFAULT '2' COMMENT '012',
`exc_count` tinyint(2) DEFAULT '0' COMMENT '5',
`create_time` datetime DEFAULT NULL COMMENT '',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COMMENT='';
-- ----------------------------
-- Records of crawl_single_task
-- ----------------------------
INSERT INTO `crawl_single_task` VALUES ('6', '2', '', '1', '1', '1', '1', '0', '5', '2020-06-15 14:36:07');
INSERT INTO `crawl_single_task` VALUES ('7', '5', '', '108_108291', '1', '', '', '1', '1', '2020-06-15 14:46:08');