同步操作将从 司马他/Montage GTD 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
-- MySQL dump 10.13 Distrib 5.1.73, for redhat-linux-gnu (i386)---- Host: localhost Database: tasks-- -------------------------------------------------------- Server version 5.1.73-log/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;/*!40101 SET NAMES utf8 */;/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;/*!40103 SET TIME_ZONE='+00:00' */;/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;---- Table structure for table `article_subs`--DROP TABLE IF EXISTS `article_subs`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `article_subs` (`id` int(10) unsigned NOT NULL AUTO_INCREMENT,`feed_id` int(10) unsigned NOT NULL,`user_id` int(10) unsigned NOT NULL,`status` varchar(255) COLLATE utf8_unicode_ci NOT NULL,`star_ind` int(11) NOT NULL DEFAULT '0',`article_id` int(10) unsigned NOT NULL,`created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',`updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',`published` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',PRIMARY KEY (`id`),KEY `articles_feed_id_foreign` (`feed_id`)) ENGINE=MyISAM AUTO_INCREMENT=181953 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Table structure for table `articles`--DROP TABLE IF EXISTS `articles`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `articles` (`id` int(10) unsigned NOT NULL AUTO_INCREMENT,`feed_id` int(10) unsigned NOT NULL,`user_id` int(10) unsigned NOT NULL,`status` varchar(255) COLLATE utf8_unicode_ci NOT NULL,`star_ind` int(11) NOT NULL DEFAULT '0',`url` varchar(255) COLLATE utf8_unicode_ci NOT NULL,`image_url` varchar(255) COLLATE utf8_unicode_ci NOT NULL,`subject` text COLLATE utf8_unicode_ci NOT NULL,`content` text COLLATE utf8_unicode_ci,`published` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',`created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',`updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',PRIMARY KEY (`id`),KEY `articles_feed_id_foreign` (`feed_id`)) ENGINE=MyISAM AUTO_INCREMENT=116658 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Table structure for table `categories`--DROP TABLE IF EXISTS `categories`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `categories` (`id` int(10) unsigned NOT NULL AUTO_INCREMENT,`user_id` int(10) unsigned NOT NULL,`category_order` int(10) unsigned NOT NULL DEFAULT '0',`name` text COLLATE utf8_unicode_ci NOT NULL,`created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',`updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',PRIMARY KEY (`id`)) ENGINE=MyISAM AUTO_INCREMENT=65 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Table structure for table `feed_subs`--DROP TABLE IF EXISTS `feed_subs`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `feed_subs` (`id` int(10) unsigned NOT NULL AUTO_INCREMENT,`user_id` int(10) unsigned NOT NULL,`status` int(11) NOT NULL DEFAULT '1',`category_id` int(10) unsigned NOT NULL,`feed_id` int(10) unsigned NOT NULL,`created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',`updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',`feed_name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,`feed_order` int(11) DEFAULT '0',PRIMARY KEY (`id`),KEY `feeds_category_id_foreign` (`category_id`)) ENGINE=MyISAM AUTO_INCREMENT=106 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Table structure for table `feedbacks`--DROP TABLE IF EXISTS `feedbacks`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `feedbacks` (`id` int(10) unsigned NOT NULL AUTO_INCREMENT,`user_id` int(10) unsigned NOT NULL,`from` varchar(255) COLLATE utf8_unicode_ci NOT NULL,`content` varchar(255) COLLATE utf8_unicode_ci NOT NULL,`created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',`updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',PRIMARY KEY (`id`)) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci ROW_FORMAT=DYNAMIC;/*!40101 SET character_set_client = @saved_cs_client */;---- Table structure for table `feeds`--DROP TABLE IF EXISTS `feeds`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `feeds` (`id` int(10) unsigned NOT NULL AUTO_INCREMENT,`user_id` int(10) unsigned NOT NULL,`status` int(11) NOT NULL DEFAULT '1',`category_id` int(10) unsigned NOT NULL,`feed_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,`feed_desc` text COLLATE utf8_unicode_ci,`url` varchar(255) COLLATE utf8_unicode_ci NOT NULL,`favicon` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,`orders` int(11) DEFAULT '0',`type` int(11) DEFAULT '1',`sub_count` int(11) DEFAULT '0',`lock_name` int(11) DEFAULT '0',`is_recommend` tinyint(4) DEFAULT '0',`recommend_order` tinyint(4) DEFAULT '0',`created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',`updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',PRIMARY KEY (`id`),KEY `feeds_category_id_foreign` (`category_id`)) ENGINE=MyISAM AUTO_INCREMENT=85 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Table structure for table `goals`--DROP TABLE IF EXISTS `goals`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `goals` (`id` int(10) unsigned NOT NULL AUTO_INCREMENT,`user_id` int(11) NOT NULL,`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,`status` tinyint(4) NOT NULL DEFAULT '1',`deadline` timestamp NULL DEFAULT NULL,`remindtime` timestamp NULL DEFAULT NULL,`priority` tinyint(4) NOT NULL DEFAULT '1',`created_at` timestamp NULL DEFAULT NULL,`updated_at` timestamp NULL DEFAULT NULL,PRIMARY KEY (`id`),KEY `tasks_user_id_index` (`user_id`)) ENGINE=MyISAM AUTO_INCREMENT=54 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci ROW_FORMAT=DYNAMIC;/*!40101 SET character_set_client = @saved_cs_client */;---- Table structure for table `kindle_logs`--DROP TABLE IF EXISTS `kindle_logs`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `kindle_logs` (`id` int(10) unsigned NOT NULL AUTO_INCREMENT,`type` int(10) unsigned NOT NULL,`user_id` int(10) unsigned NOT NULL,`status` varchar(255) COLLATE utf8_unicode_ci NOT NULL,`path` varchar(255) COLLATE utf8_unicode_ci NOT NULL,`created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',`updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',PRIMARY KEY (`id`)) ENGINE=MyISAM AUTO_INCREMENT=18115 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Table structure for table `migrations`--DROP TABLE IF EXISTS `migrations`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `migrations` (`migration` varchar(255) COLLATE utf8_unicode_ci NOT NULL,`batch` int(11) NOT NULL) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Table structure for table `minds`--DROP TABLE IF EXISTS `minds`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `minds` (`id` int(11) NOT NULL AUTO_INCREMENT,`name` varchar(500) NOT NULL,`content` varchar(500) NOT NULL,`image_url` varchar(50) NOT NULL,`orders` varchar(50) NOT NULL,`parent_mind_id` int(11) DEFAULT NULL,`copy_mind_id` int(11) DEFAULT NULL,`is_root` int(11) NOT NULL,`status` int(11) DEFAULT '1',`user_id` int(11) NOT NULL,`created_at` datetime NOT NULL,`updated_at` datetime NOT NULL,PRIMARY KEY (`id`)) ENGINE=MyISAM AUTO_INCREMENT=664 DEFAULT CHARSET=utf8;/*!40101 SET character_set_client = @saved_cs_client */;---- Table structure for table `note_tag_maps`--DROP TABLE IF EXISTS `note_tag_maps`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `note_tag_maps` (`id` int(10) unsigned NOT NULL AUTO_INCREMENT,`tag_id` int(11) NOT NULL,`note_id` int(11) NOT NULL,`status` tinyint(4) NOT NULL DEFAULT '1',`created_at` timestamp NULL DEFAULT NULL,`updated_at` timestamp NULL DEFAULT NULL,PRIMARY KEY (`id`)) ENGINE=MyISAM AUTO_INCREMENT=162 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci ROW_FORMAT=DYNAMIC;/*!40101 SET character_set_client = @saved_cs_client */;---- Table structure for table `notes`--DROP TABLE IF EXISTS `notes`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `notes` (`id` int(10) unsigned NOT NULL AUTO_INCREMENT,`user_id` int(11) NOT NULL,`status` tinyint(4) NOT NULL DEFAULT '1',`name` varchar(3000) COLLATE utf8_unicode_ci NOT NULL,`record_path` varchar(300) COLLATE utf8_unicode_ci DEFAULT NULL,`image_path` varchar(300) COLLATE utf8_unicode_ci DEFAULT NULL,`created_at` timestamp NULL DEFAULT NULL,`updated_at` timestamp NULL DEFAULT NULL,PRIMARY KEY (`id`),KEY `pomos_user_id_index` (`user_id`)) ENGINE=MyISAM AUTO_INCREMENT=174 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci ROW_FORMAT=DYNAMIC;/*!40101 SET character_set_client = @saved_cs_client */;---- Table structure for table `password_resets`--DROP TABLE IF EXISTS `password_resets`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `password_resets` (`email` varchar(255) COLLATE utf8_unicode_ci NOT NULL,`token` varchar(255) COLLATE utf8_unicode_ci NOT NULL,`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,KEY `password_resets_email_index` (`email`),KEY `password_resets_token_index` (`token`)) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Table structure for table `pomos`--DROP TABLE IF EXISTS `pomos`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `pomos` (`id` int(10) unsigned NOT NULL AUTO_INCREMENT,`user_id` int(11) NOT NULL,`status` int(11) NOT NULL DEFAULT '1',`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,`created_at` timestamp NULL DEFAULT NULL,`updated_at` timestamp NULL DEFAULT NULL,PRIMARY KEY (`id`),KEY `pomos_user_id_index` (`user_id`)) ENGINE=MyISAM AUTO_INCREMENT=171 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Table structure for table `settings`--DROP TABLE IF EXISTS `settings`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `settings` (`id` int(11) NOT NULL AUTO_INCREMENT,`day_pomo_goal` int(11) NOT NULL,`week_pomo_goal` int(11) NOT NULL,`month_pomo_goal` int(11) NOT NULL,`pomo_time` int(11) NOT NULL,`pomo_rest_time` int(11) NOT NULL,`kindle_email` varchar(200) NOT NULL,`updated_at` datetime NOT NULL,`created_at` datetime NOT NULL,`user_id` int(11) NOT NULL,`with_image_push` int(11) NOT NULL DEFAULT '0',`is_start_kindle` int(11) NOT NULL DEFAULT '0',PRIMARY KEY (`id`),UNIQUE KEY `user_id` (`user_id`)) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8;/*!40101 SET character_set_client = @saved_cs_client */;---- Table structure for table `statistics`--DROP TABLE IF EXISTS `statistics`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `statistics` (`id` int(10) unsigned NOT NULL AUTO_INCREMENT,`user_id` int(10) unsigned NOT NULL,`date_type` varchar(255) COLLATE utf8_unicode_ci NOT NULL,`data_type` varchar(255) COLLATE utf8_unicode_ci NOT NULL,`total` int(10) unsigned NOT NULL DEFAULT '0',`statistic_date` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',`created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',`updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',PRIMARY KEY (`id`)) ENGINE=MyISAM AUTO_INCREMENT=134 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Table structure for table `tags`--DROP TABLE IF EXISTS `tags`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `tags` (`id` int(10) unsigned NOT NULL AUTO_INCREMENT,`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,`status` tinyint(4) NOT NULL DEFAULT '1',`created_at` timestamp NULL DEFAULT NULL,`updated_at` timestamp NULL DEFAULT NULL,PRIMARY KEY (`id`)) ENGINE=MyISAM AUTO_INCREMENT=62 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci ROW_FORMAT=DYNAMIC;/*!40101 SET character_set_client = @saved_cs_client */;---- Table structure for table `task_tag_maps`--DROP TABLE IF EXISTS `task_tag_maps`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `task_tag_maps` (`id` int(10) unsigned NOT NULL AUTO_INCREMENT,`tag_id` int(11) NOT NULL,`task_id` int(11) NOT NULL,`status` tinyint(4) NOT NULL DEFAULT '1',`created_at` timestamp NULL DEFAULT NULL,`updated_at` timestamp NULL DEFAULT NULL,PRIMARY KEY (`id`)) ENGINE=MyISAM AUTO_INCREMENT=47 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci ROW_FORMAT=DYNAMIC;/*!40101 SET character_set_client = @saved_cs_client */;---- Table structure for table `tasks`--DROP TABLE IF EXISTS `tasks`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `tasks` (`id` int(10) unsigned NOT NULL AUTO_INCREMENT,`user_id` int(11) NOT NULL,`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,`status` tinyint(4) NOT NULL DEFAULT '1',`deadline` timestamp NULL DEFAULT NULL,`remindtime` timestamp NULL DEFAULT NULL,`priority` tinyint(4) NOT NULL DEFAULT '1',`created_at` timestamp NULL DEFAULT NULL,`updated_at` timestamp NULL DEFAULT NULL,`goal_id` int(11) DEFAULT NULL,`is_top` int(11) DEFAULT '0',`parent_tag_id` int(11) DEFAULT NULL,PRIMARY KEY (`id`),KEY `tasks_user_id_index` (`user_id`)) ENGINE=MyISAM AUTO_INCREMENT=102 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;---- Table structure for table `things`--DROP TABLE IF EXISTS `things`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `things` (`id` int(11) NOT NULL AUTO_INCREMENT,`user_id` int(11) DEFAULT NULL,`start_time` datetime DEFAULT NULL,`end_time` datetime DEFAULT NULL,`created_at` datetime DEFAULT NULL,`updated_at` datetime DEFAULT NULL,`name` varchar(200) CHARACTER SET utf8 DEFAULT NULL,`type` smallint(6) DEFAULT '1',PRIMARY KEY (`id`)) ENGINE=MyISAM AUTO_INCREMENT=76 DEFAULT CHARSET=latin1;/*!40101 SET character_set_client = @saved_cs_client */;---- Table structure for table `thirds`--DROP TABLE IF EXISTS `thirds`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `thirds` (`id` int(10) unsigned NOT NULL AUTO_INCREMENT,`user_id` int(11) NOT NULL,`created_at` timestamp NULL DEFAULT NULL,`updated_at` timestamp NULL DEFAULT NULL,`token` text,`token_value` varchar(50) DEFAULT NULL,`token_secret` varchar(50) DEFAULT NULL,`third_id` varchar(50) DEFAULT NULL,`third_name` varchar(50) DEFAULT NULL,`source` varchar(50) DEFAULT NULL,PRIMARY KEY (`id`)) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8;/*!40101 SET character_set_client = @saved_cs_client */;---- Table structure for table `users`--DROP TABLE IF EXISTS `users`;/*!40101 SET @saved_cs_client = @@character_set_client */;/*!40101 SET character_set_client = utf8 */;CREATE TABLE `users` (`id` int(10) unsigned NOT NULL AUTO_INCREMENT,`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,`email` varchar(255) COLLATE utf8_unicode_ci NOT NULL,`password` varchar(60) COLLATE utf8_unicode_ci NOT NULL,`remember_token` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL,`created_at` timestamp NULL DEFAULT NULL,`updated_at` timestamp NULL DEFAULT NULL,`last_login` timestamp NULL DEFAULT NULL,PRIMARY KEY (`id`),UNIQUE KEY `users_email_unique` (`email`)) ENGINE=MyISAM AUTO_INCREMENT=118 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;/*!40101 SET character_set_client = @saved_cs_client */;/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;-- Dump completed on 2017年10月13日 16:45:21CREATE TABLE `article_marks` (`id` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,`user_id` INT(10) UNSIGNED NOT NULL,`article_id` INT(10) UNSIGNED NOT NULL,`content` TEXT NOT NULL COLLATE 'utf8_unicode_ci',`created_at` TIMESTAMP NOT NULL DEFAULT '0000-00-00 00:00:00',`updated_at` TIMESTAMP NOT NULL DEFAULT '0000-00-00 00:00:00',PRIMARY KEY (`id`))COLLATE='utf8_unicode_ci'ENGINE=MyISAMROW_FORMAT=DYNAMICAUTO_INCREMENT=33845;
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。