|
@@ -0,0 +1,305 @@
|
|
|
+-- MySQL dump 10.13 Distrib 5.7.24, for Linux (x86_64)
|
|
|
+--
|
|
|
+-- Host: 127.0.0.1 Database: goods_service
|
|
|
+-- ------------------------------------------------------
|
|
|
+-- Server version 5.7.24-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 */;
|
|
|
+
|
|
|
+--
|
|
|
+-- Current Database: `goods_service`
|
|
|
+--
|
|
|
+
|
|
|
+CREATE DATABASE /*!32312 IF NOT EXISTS*/ `goods_service` /*!40100 DEFAULT CHARACTER SET utf8mb4 */;
|
|
|
+
|
|
|
+USE `goods_service`;
|
|
|
+
|
|
|
+--
|
|
|
+-- Table structure for table `ad`
|
|
|
+--
|
|
|
+
|
|
|
+DROP TABLE IF EXISTS `ad`;
|
|
|
+/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
|
+/*!40101 SET character_set_client = utf8 */;
|
|
|
+CREATE TABLE `ad` (
|
|
|
+ `id` int(11) NOT NULL AUTO_INCREMENT,
|
|
|
+ `name` varchar(60) DEFAULT '',
|
|
|
+ `image_url` varchar(255) DEFAULT '',
|
|
|
+ `link` varchar(255) DEFAULT '',
|
|
|
+ `sort_order` int(11) DEFAULT '10',
|
|
|
+ `enable` tinyint(1) DEFAULT '1',
|
|
|
+ `create` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
|
|
|
+ PRIMARY KEY (`id`),
|
|
|
+ KEY `enable` (`enable`)
|
|
|
+) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4;
|
|
|
+/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
+
|
|
|
+--
|
|
|
+-- Table structure for table `category`
|
|
|
+--
|
|
|
+
|
|
|
+DROP TABLE IF EXISTS `category`;
|
|
|
+/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
|
+/*!40101 SET character_set_client = utf8 */;
|
|
|
+CREATE TABLE `category` (
|
|
|
+ `id` int(11) NOT NULL AUTO_INCREMENT,
|
|
|
+ `name` varchar(30) DEFAULT '',
|
|
|
+ `parent_id` int(11) DEFAULT '0',
|
|
|
+ `icon_url` varchar(255) DEFAULT '',
|
|
|
+ `sort_order` int(11) DEFAULT '50',
|
|
|
+ PRIMARY KEY (`id`),
|
|
|
+ KEY `parent_id` (`parent_id`)
|
|
|
+) ENGINE=InnoDB AUTO_INCREMENT=68 DEFAULT CHARSET=utf8mb4;
|
|
|
+/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
+
|
|
|
+--
|
|
|
+-- Table structure for table `channel`
|
|
|
+--
|
|
|
+
|
|
|
+DROP TABLE IF EXISTS `channel`;
|
|
|
+/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
|
+/*!40101 SET character_set_client = utf8 */;
|
|
|
+CREATE TABLE `channel` (
|
|
|
+ `id` int(11) NOT NULL AUTO_INCREMENT,
|
|
|
+ `name` varchar(45) NOT NULL DEFAULT '',
|
|
|
+ `url` varchar(255) NOT NULL DEFAULT '',
|
|
|
+ `icon_url` varchar(255) NOT NULL DEFAULT '',
|
|
|
+ `sort_order` int(4) unsigned NOT NULL DEFAULT '10',
|
|
|
+ PRIMARY KEY (`id`)
|
|
|
+) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4;
|
|
|
+/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
+
|
|
|
+--
|
|
|
+-- Table structure for table `goods`
|
|
|
+--
|
|
|
+
|
|
|
+DROP TABLE IF EXISTS `goods`;
|
|
|
+/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
|
+/*!40101 SET character_set_client = utf8 */;
|
|
|
+CREATE TABLE `goods` (
|
|
|
+ `id` int(11) NOT NULL AUTO_INCREMENT,
|
|
|
+ `category_id` int(11) DEFAULT '0',
|
|
|
+ `seller_id` varchar(32) DEFAULT '1',
|
|
|
+ `buyer_id` varchar(32) DEFAULT '0',
|
|
|
+ `name` varchar(100) DEFAULT '',
|
|
|
+ `price` decimal(10,2) NOT NULL,
|
|
|
+ `market_price` decimal(10,2) DEFAULT '0.00',
|
|
|
+ `postage` decimal(10,2) DEFAULT '0.00',
|
|
|
+ `primary_pic_url` varchar(255) DEFAULT '',
|
|
|
+ `desc` text,
|
|
|
+ `region_id` int(11) DEFAULT '403',
|
|
|
+ `region` varchar(64) DEFAULT '北京 北京市 东城区',
|
|
|
+ `want_count` int(11) DEFAULT '0',
|
|
|
+ `browse_count` int(11) DEFAULT '0',
|
|
|
+ `is_selling` tinyint(1) DEFAULT '1',
|
|
|
+ `is_delete` tinyint(1) DEFAULT '0',
|
|
|
+ `able_express` tinyint(1) DEFAULT '1',
|
|
|
+ `able_meet` tinyint(1) DEFAULT '0',
|
|
|
+ `able_self_take` tinyint(1) DEFAULT '0',
|
|
|
+ `post_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
|
+ `last_edit` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
|
+ `sold_time` timestamp NULL DEFAULT NULL,
|
|
|
+ PRIMARY KEY (`id`),
|
|
|
+ KEY `category_id` (`category_id`),
|
|
|
+ KEY `seller_id` (`seller_id`),
|
|
|
+ KEY `buyer_id` (`buyer_id`)
|
|
|
+) ENGINE=InnoDB AUTO_INCREMENT=44 DEFAULT CHARSET=utf8mb4;
|
|
|
+/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
+
|
|
|
+--
|
|
|
+-- Table structure for table `goods_comment`
|
|
|
+--
|
|
|
+
|
|
|
+DROP TABLE IF EXISTS `goods_comment`;
|
|
|
+/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
|
+/*!40101 SET character_set_client = utf8 */;
|
|
|
+CREATE TABLE `goods_comment` (
|
|
|
+ `id` int(11) NOT NULL AUTO_INCREMENT,
|
|
|
+ `goods_id` int(11) DEFAULT '0',
|
|
|
+ `user_id` varchar(32) DEFAULT '1',
|
|
|
+ `reply_comment_id` int(11) DEFAULT '0',
|
|
|
+ `reply_user_id` varchar(32) DEFAULT '0',
|
|
|
+ `content` text,
|
|
|
+ `is_delete` tinyint(1) DEFAULT '0',
|
|
|
+ `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
|
+ PRIMARY KEY (`id`),
|
|
|
+ KEY `goods_id` (`goods_id`),
|
|
|
+ KEY `reply_comment_id` (`reply_comment_id`),
|
|
|
+ KEY `user_id` (`user_id`),
|
|
|
+ KEY `reply_user_id` (`reply_user_id`)
|
|
|
+) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8mb4;
|
|
|
+/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
+
|
|
|
+--
|
|
|
+-- Table structure for table `goods_gallery`
|
|
|
+--
|
|
|
+
|
|
|
+DROP TABLE IF EXISTS `goods_gallery`;
|
|
|
+/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
|
+/*!40101 SET character_set_client = utf8 */;
|
|
|
+CREATE TABLE `goods_gallery` (
|
|
|
+ `id` int(11) NOT NULL AUTO_INCREMENT,
|
|
|
+ `goods_id` int(11) DEFAULT '0',
|
|
|
+ `img_url` varchar(255) DEFAULT '',
|
|
|
+ PRIMARY KEY (`id`),
|
|
|
+ KEY `goods_id` (`goods_id`)
|
|
|
+) ENGINE=InnoDB AUTO_INCREMENT=118 DEFAULT CHARSET=utf8mb4;
|
|
|
+/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
+
|
|
|
+--
|
|
|
+-- Table structure for table `region`
|
|
|
+--
|
|
|
+
|
|
|
+DROP TABLE IF EXISTS `region`;
|
|
|
+/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
|
+/*!40101 SET character_set_client = utf8 */;
|
|
|
+CREATE TABLE `region` (
|
|
|
+ `id` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
|
|
|
+ `parent_id` smallint(5) unsigned NOT NULL DEFAULT '0',
|
|
|
+ `name` varchar(120) NOT NULL DEFAULT '',
|
|
|
+ `type` tinyint(1) NOT NULL DEFAULT '2',
|
|
|
+ `agency_id` smallint(5) unsigned NOT NULL DEFAULT '0',
|
|
|
+ PRIMARY KEY (`id`),
|
|
|
+ KEY `parent_id` (`parent_id`),
|
|
|
+ KEY `region_type` (`type`),
|
|
|
+ KEY `agency_id` (`agency_id`)
|
|
|
+) ENGINE=InnoDB AUTO_INCREMENT=4044 DEFAULT CHARSET=utf8mb4;
|
|
|
+/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
+
|
|
|
+--
|
|
|
+-- Table structure for table `search_history`
|
|
|
+--
|
|
|
+
|
|
|
+DROP TABLE IF EXISTS `search_history`;
|
|
|
+/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
|
+/*!40101 SET character_set_client = utf8 */;
|
|
|
+CREATE TABLE `search_history` (
|
|
|
+ `id` int(11) NOT NULL AUTO_INCREMENT,
|
|
|
+ `user_id` varchar(32) DEFAULT '1',
|
|
|
+ `keyword` varchar(65) DEFAULT '',
|
|
|
+ `search_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
|
+ PRIMARY KEY (`id`),
|
|
|
+ KEY `user_id` (`user_id`)
|
|
|
+) ENGINE=InnoDB AUTO_INCREMENT=52 DEFAULT CHARSET=utf8mb4;
|
|
|
+/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
+
|
|
|
+--
|
|
|
+-- Table structure for table `user_preference`
|
|
|
+--
|
|
|
+
|
|
|
+DROP TABLE IF EXISTS `user_preference`;
|
|
|
+/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
|
+/*!40101 SET character_set_client = utf8 */;
|
|
|
+CREATE TABLE `user_preference` (
|
|
|
+ `id` int(11) NOT NULL AUTO_INCREMENT,
|
|
|
+ `goods_id` int(11) DEFAULT '0',
|
|
|
+ `user_id` varchar(32) DEFAULT '0',
|
|
|
+ `type` int(1) DEFAULT '0' COMMENT '1:收藏,2:想要',
|
|
|
+ `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
|
+ PRIMARY KEY (`id`),
|
|
|
+ KEY `user_id` (`user_id`),
|
|
|
+ KEY `type` (`type`),
|
|
|
+ KEY `goods_id` (`goods_id`)
|
|
|
+) ENGINE=InnoDB AUTO_INCREMENT=40 DEFAULT CHARSET=utf8mb4;
|
|
|
+/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
+
|
|
|
+--
|
|
|
+-- Current Database: `im_service`
|
|
|
+--
|
|
|
+
|
|
|
+CREATE DATABASE /*!32312 IF NOT EXISTS*/ `im_service` /*!40100 DEFAULT CHARACTER SET utf8mb4 */;
|
|
|
+
|
|
|
+USE `im_service`;
|
|
|
+
|
|
|
+--
|
|
|
+-- Table structure for table `chat`
|
|
|
+--
|
|
|
+
|
|
|
+DROP TABLE IF EXISTS `chat`;
|
|
|
+/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
|
+/*!40101 SET character_set_client = utf8 */;
|
|
|
+CREATE TABLE `chat` (
|
|
|
+ `id` int(11) NOT NULL AUTO_INCREMENT,
|
|
|
+ `u1` varchar(32) NOT NULL DEFAULT '',
|
|
|
+ `u2` varchar(32) DEFAULT '' COMMENT 'u1 < u2',
|
|
|
+ `goods_id` int(11) DEFAULT '0',
|
|
|
+ `show_to_u1` tinyint(1) DEFAULT '1',
|
|
|
+ `show_to_u2` tinyint(1) DEFAULT '1',
|
|
|
+ PRIMARY KEY (`id`),
|
|
|
+ KEY `u1` (`u1`),
|
|
|
+ KEY `u2` (`u2`),
|
|
|
+ KEY `goods_id` (`goods_id`)
|
|
|
+) ENGINE=InnoDB AUTO_INCREMENT=22 DEFAULT CHARSET=utf8mb4;
|
|
|
+/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
+
|
|
|
+--
|
|
|
+-- Table structure for table `history`
|
|
|
+--
|
|
|
+
|
|
|
+DROP TABLE IF EXISTS `history`;
|
|
|
+/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
|
+/*!40101 SET character_set_client = utf8 */;
|
|
|
+CREATE TABLE `history` (
|
|
|
+ `id` int(11) NOT NULL AUTO_INCREMENT,
|
|
|
+ `chat_id` int(11) DEFAULT '0',
|
|
|
+ `u1_to_u2` tinyint(1) DEFAULT '0',
|
|
|
+ `message_type` int(11) DEFAULT '1',
|
|
|
+ `message_body` text,
|
|
|
+ `send_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
|
+ PRIMARY KEY (`id`),
|
|
|
+ KEY `chat_id` (`chat_id`),
|
|
|
+ KEY `send_time` (`send_time`)
|
|
|
+) ENGINE=InnoDB AUTO_INCREMENT=277 DEFAULT CHARSET=utf8mb4;
|
|
|
+/*!40101 SET character_set_client = @saved_cs_client */;
|
|
|
+
|
|
|
+--
|
|
|
+-- Current Database: `user_service`
|
|
|
+--
|
|
|
+
|
|
|
+CREATE DATABASE /*!32312 IF NOT EXISTS*/ `user_service` /*!40100 DEFAULT CHARACTER SET utf8mb4 */;
|
|
|
+
|
|
|
+USE `user_service`;
|
|
|
+
|
|
|
+--
|
|
|
+-- Table structure for table `user`
|
|
|
+--
|
|
|
+
|
|
|
+DROP TABLE IF EXISTS `user`;
|
|
|
+/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
|
+/*!40101 SET character_set_client = utf8 */;
|
|
|
+CREATE TABLE `user` (
|
|
|
+ `id` int(11) NOT NULL AUTO_INCREMENT,
|
|
|
+ `open_id` varchar(32) DEFAULT '0',
|
|
|
+ `nick_name` varchar(32) DEFAULT '',
|
|
|
+ `avatar_url` varchar(200) DEFAULT '',
|
|
|
+ `gender` int(1) DEFAULT NULL,
|
|
|
+ `country` varchar(16) DEFAULT NULL,
|
|
|
+ `province` varchar(16) DEFAULT NULL,
|
|
|
+ `city` varchar(16) DEFAULT NULL,
|
|
|
+ `language` varchar(5) DEFAULT NULL,
|
|
|
+ `register_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
|
|
|
+ PRIMARY KEY (`id`),
|
|
|
+ UNIQUE KEY `user_open_id_uindex` (`open_id`),
|
|
|
+ KEY `open_id` (`open_id`)
|
|
|
+) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8mb4;
|
|
|
+/*!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 2018-12-18 13:40:01
|