當前位置:
首頁 >
前端技术
> javascript
>内容正文
javascript
SpringCloud_Sell.sql
生活随笔
收集整理的這篇文章主要介紹了
SpringCloud_Sell.sql
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
-- 類目
create table `product_category` (`category_id` int not null auto_increment,`category_name` varchar(64) not null comment '類目名字',`category_type` int not null comment '類目編號',`create_time` timestamp not null default current_timestamp comment '創建時間',`update_time` timestamp not null default current_timestamp on update current_timestamp comment '修改時間',primary key (`category_id`),unique key `uqe_category_type` (`category_type`)
)ENGINE=InnoDB DEFAULT CHARSET=utf8;
INSERT INTO `product_category` (`category_id`, `category_name`, `category_type`, `create_time`, `update_time`)
VALUES(1,'熱榜',11,'2017-03-28 16:40:22','2017-11-26 23:39:36'),(2,'好吃的',22,'2017-03-14 17:38:46','2017-11-26 23:39:40');-- 商品
create table `product_info` (`product_id` varchar(32) not null,`product_name` varchar(64) not null comment '商品名稱',`product_price` decimal(8,2) not null comment '單價',`product_stock` int not null comment '庫存',`product_description` varchar(64) comment '描述',`product_icon` varchar(512) comment '小圖',`product_status` tinyint(3) DEFAULT '0' COMMENT '商品狀態,0正常1下架',`category_type` int not null comment '類目編號',`create_time` timestamp not null default current_timestamp comment '創建時間',`update_time` timestamp not null default current_timestamp on update current_timestamp comment '修改時間',primary key (`product_id`)
)ENGINE=InnoDB DEFAULT CHARSET=utf8;
INSERT INTO `product_info` (`product_id`, `product_name`, `product_price`, `product_stock`, `product_description`, `product_icon`, `product_status`, `category_type`, `create_time`, `update_time`)
VALUES('157875196366160022','皮蛋粥',0.01,39,'好吃的皮蛋粥','//fuss10.elemecdn.com/0/49/65d10ef215d3c770ebb2b5ea962a7jpeg.jpeg',0,1,'2017-03-28 19:39:15','2017-07-02 11:45:44'),('157875227953464068','慕斯蛋糕',10.90,200,'美味爽口','//fuss10.elemecdn.com/9/93/91994e8456818dfe7b0bd95f10a50jpeg.jpeg',1,1,'2017-03-28 19:35:54','2017-04-21 10:05:57'),('164103465734242707','蜜汁雞翅',0.02,982,'好吃','//fuss10.elemecdn.com/7/4a/f307f56216b03f067155aec8b124ejpeg.jpeg',0,1,'2017-03-30 17:11:56','2017-06-24 19:20:54');-- 訂單
create table `order_master` (`order_id` varchar(32) not null,`buyer_name` varchar(32) not null comment '買家名字',`buyer_phone` varchar(32) not null comment '買家電話',`buyer_address` varchar(128) not null comment '買家地址',`buyer_openid` varchar(64) not null comment '買家微信openid',`order_amount` decimal(8,2) not null comment '訂單總金額',`order_status` tinyint(3) not null default '0' comment '訂單狀態, 默認為新下單',`pay_status` tinyint(3) not null default '0' comment '支付狀態, 默認未支付',`create_time` timestamp not null default current_timestamp comment '創建時間',`update_time` timestamp not null default current_timestamp on update current_timestamp comment '修改時間',primary key (`order_id`),key `idx_buyer_openid` (`buyer_openid`)
)ENGINE=InnoDB DEFAULT CHARSET=utf8;-- 訂單商品
create table `order_detail` (`detail_id` varchar(32) not null,`order_id` varchar(32) not null,`product_id` varchar(32) not null,`product_name` varchar(64) not null comment '商品名稱',`product_price` decimal(8,2) not null comment '當前價格,單位分',`product_quantity` int not null comment '數量',`product_icon` varchar(512) comment '小圖',`create_time` timestamp not null default current_timestamp comment '創建時間',`update_time` timestamp not null default current_timestamp on update current_timestamp comment '修改時間',primary key (`detail_id`),key `idx_order_id` (`order_id`)
)ENGINE=InnoDB DEFAULT CHARSET=utf8;-- 用戶
CREATE TABLE `user_info` (`id` varchar(32) NOT NULL,`username` varchar(32) DEFAULT '',`password` varchar(32) DEFAULT '',`openid` varchar(64) DEFAULT '' COMMENT '微信openid',`role` tinyint(1) NOT NULL COMMENT '1買家2賣家',`create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '創建時間',`update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '修改時間',PRIMARY KEY (`id`)
)ENGINE=InnoDB DEFAULT CHARSET=utf8;
DROP DATABASE IF EXISTS test01;
create database test01;
use test01;
create table `order_info` (`id` int not null auto_increment,`orderName` varchar(64) not null,`orderDes` varchar(64) not null,primary key (`id`)
)ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE `m_app` (`id` int(11) NOT NULL AUTO_INCREMENT,`app_name` varchar(255) DEFAULT NULL,`app_id` varchar(255) DEFAULT NULL,`app_secret` varchar(255) DEFAULT NULL,`is_flag` varchar(255) DEFAULT NULL,`access_token` varchar(255) DEFAULT NULL,PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
?
總結
以上是生活随笔為你收集整理的SpringCloud_Sell.sql的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Zuul:限流
- 下一篇: Zuul鉴权和添加用户服务