数据库设计.md

Area 区域

  • areaId
  • name 名称
  • priority 权重
  • createTime 创建时间
  • lastEditTime 修改时间
  • enable 是否启用
  • parentId 父节点id
use o2o;
create table `tb_area`(
    `area_id` int(5) NOT NULL AUTO_INCREMENT,
    `name` varchar(200) NOT NULL,
    `priority` int(2) NOT NULL DEFAULT '0',
    `create_time` datetime DEFAULT NULL,
    `last_edit_time` datetime DEFAULT NULL,
    `parent_id` int(5) NOT NULL DEFAULT '0',
    primary key(`area_id`),
    unique key `UK_AREA`(`name`),
    constraint `FK_AREA_SELF` foreign key(`parent_id`) references `tb_area`(`area_id`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;

personInfo 用户信息

  • personId
  • name 昵称
  • imgUrl 图像地址
  • email 邮箱
  • gender 性别
  • status 状态 0是启用1是禁用
  • userType 用户类型 1:超管2:店主3:普通用户4:微信用户5:手机号用户
  • createTime 创建时间
  • lastEditTime 修改时间
use o2o;
create table `tb_person_info`(
    `person_id` BIGINT NOT NULL AUTO_INCREMENT,
    `name` varchar(50) DEFAULT NULL,
    `img_url`varchar(1024) DEFAULT NULL,
    `email`varchar(1024) DEFAULT NULL,
    `gender` int(1) DEFAULT NULL,
    `status` int(2) NOT NULL DEFAULT '0' COMMENT '0是启用1是禁用',
    `user_type` int(1) NOT NULL DEFAULT '0' COMMENT '0:无效用户1:超管2:店主3:普通用户4:微信用户5:手机号用户',
    `create_time` datetime DEFAULT NULL,
    `last_edit_time` datetime DEFAULT NULL,
    primary key(`person_id`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;

wechatAuth 微信用户

  • wechatAuthId
  • openId
  • createTime 创建时间
  • personInfo 用户信息 user_id关联
use o2o;
create table `tb_wechat_auth`(
    `wechat_auth_id` BIGINT NOT NULL AUTO_INCREMENT,
    `open_id` varchar(1024) NOT NULL,
    `user_id` BIGINT NOT NULL,
    `create_time` DATETIME DEFAULT NULL,
    primary key (`wechat_auth_id`),
    unique key `UK_WECHAT_OPEN_ID`(`open_id`),
    constraint `FK_WECHAT_AUTH_PERSION` foreign key(`user_id`) references `tb_person_info`(`person_id`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;

registerAuth 微信用户

  • registerAuthId
  • userName 用户名
  • password 密码
  • createTime 创建时间
  • lastEditTime 修改时间
  • personInfo 用户信息 user_id关联
use o2o;
create table `tb_register_auth`(
    `register_auth_id` BIGINT NOT NULL AUTO_INCREMENT,
    `user_id` BIGINT NOT NULL,
    `user_name` varchar(128) NOT NULL,
    `password` varchar(128) NOT NULL,
    `create_time` datetime DEFAULT NULL,
    `last_edit_time` datetime DEFAULT NULL,
    primary key(`register_auth_id`),
    unique key `UK_REGISTER_AUTH`(`user_name`),
    constraint `FK_REGISTER_AUTH_PERSON` foreign key(`user_id`) references `tb_person_info`(`person_id`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;

banner

  • bannerId
  • priority 权重
  • title 标题
  • clickUrl 点击链接
  • imgUrl 图片链接
  • status 是否可用 0可用 1不可用
  • createTime 创建时间
  • lastEditTime 修改时间
use o2o;
create table `tb_banner`(
    `banner_id` int(10) NOT NULL AUTO_INCREMENT,
    `title` varchar(128) NOT NULL,
    `click_url` varchar(2048) DEFAULT NULL,
    `img_url` varchar(2048) NOT NULL,
    `status` int(2) NOT NULL DEFAULT '0' COMMENT '0是启用1是禁用',
    `priority` int(2) NOT NULL DEFAULT '0',
    `create_time` datetime DEFAULT NULL,
    `last_edit_time` datetime DEFAULT NULL,
    primary key(`banner_id`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;

shopCategory店铺类别

  • shopCategoryId
  • name 名称
  • desc 注释
  • imgUrl 图片链接
  • priority 权重
  • createTime 创建时间
  • lastEditTime 修改时间
  • parent 无限树 关联本身的shopCategoryId
use o2o;
create table `tb_shop_category`(
    `shop_category_id` int(10) NOT NULL AUTO_INCREMENT,
    `name` varchar(128) NOT NULL,
    `desc` varchar(2048) DEFAULT NULL,
    `img_url` varchar(2048) DEFAULT NULL,
    `priority` int(2) NOT NULL DEFAULT '0',
    `create_time` datetime DEFAULT NULL,
    `last_edit_time` datetime DEFAULT NULL,
    `parent_id` int(10) DEFAULT NULL,
    primary key(`shop_category_id`),
    constraint `FK_SHOP_CATEGORY_SELF` foreign key(`parent_id`) references `tb_shop_category`(`shop_category_id`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;

shop店铺

  • shopId
  • priority 权重
  • imgUrl 图片地址
  • name 名称
  • desc 描述
  • address 地址
  • phone 联系电话
  • area 区域
  • category 店铺类别
  • owner 店铺所有人
  • enable 是否启用 0启用 1禁用 2审核
  • notice 通知
  • createTime 创建时间
  • lastEditTime 修改时间
use o2o;
create table `tb_shop`(
    `shop_id` BIGINT NOT NULL AUTO_INCREMENT,
    `name` varchar(128) NOT NULL,
    `phone` varchar(128) NOT NULL,
    `desc` varchar(2048) DEFAULT NULL,
    `address` varchar(2048) DEFAULT NULL,
    `img_url` varchar(2048) DEFAULT NULL,
    `notice` varchar(2048) DEFAULT NULL,
    `priority` int(2) NOT NULL DEFAULT '0',
    `create_time` datetime DEFAULT NULL,
    `last_edit_time` datetime DEFAULT NULL,
    `enable` int(1) NOT NULL DEFAULT '2' COMMENT '0启用 1禁用 2审核',
    `owner_id` BIGINT NOT NULL,
    `area_id` int(5) NOT NULL,
    `category_id` int(10) NOT NULL,
    primary key(`shop_id`),
    unique key `UK_SHOP_NAME`(`name`),
    constraint `FK_SHOP_OWNER` foreign key(`owner_id`) references `tb_person_info`(`person_id`),
    constraint `FK_SHOP_AREA` foreign key(`area_id`) references `tb_area`(`area_id`),
    constraint `FK_SHOP_CATEGORY` foreign key(`category_id`) references `tb_shop_category`(`shop_category_id`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;

商品类别

  • productCategoryId
  • name 名称
  • imgUrl 图片链接
  • priority 权重
  • createTime 创建时间
  • lastEditTime 修改时间
  • shopId 关联店铺的Id
use o2o;
create table `tb_product_category`(
    `product_category_id` int(10) NOT NULL AUTO_INCREMENT,
    `name` varchar(128) NOT NULL,
    `img_url` varchar(2048) DEFAULT NULL,
    `priority` int(2) NOT NULL DEFAULT '0',
    `create_time` datetime DEFAULT NULL,
    `last_edit_time` datetime DEFAULT NULL,
    `shop_id` BIGINT DEFAULT NULL,
    primary key(`product_category_id`),
    constraint `FK_PRODUCT_CATEGORY_SHOP` foreign key(`shop_id`) references `tb_shop`(`shop_id`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;

商品banner

  • productBannerId
  • priority 权重
  • title 标题
  • imgUrl 图片链接
  • createTime 创建时间
  • lastEditTime 修改时间
  • product_id 商品ID
use o2o;
create table `tb_product_banner`(
    `product_banner_id` int(10) NOT NULL AUTO_INCREMENT,
    `title` varchar(128) NOT NULL,
    `img_url` varchar(2048) NOT NULL,
    `priority` int(2) NOT NULL DEFAULT '0',
    `create_time` datetime DEFAULT NULL,
    `last_edit_time` datetime DEFAULT NULL,
    `product_id` BIGINT NOT NULL,
    primary key(`product_banner_id`),
    constraint `FK_PRODUCT_BANNER_PRODUCT` foreign key(`product_id`) references `tb_product`(`product_id`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;

product商品

  • productId
  • priority 权重
  • imgUrl 图片地址
  • name 名称
  • desc 描述
  • normalPrice 价格
  • promotionPrice 折扣价
  • shop 店铺
  • category 商品类别
  • banner 商品banner list
  • status 是否启用 0启用 1下架 2审核
  • createTime 创建时间
  • lastEditTime 修改时间
use o2o;
create table `tb_product`(
    `product_id` int(10) NOT NULL AUTO_INCREMENT,
    `name` varchar(128) NOT NULL,
    `desc` varchar(2048) DEFAULT NULL,
    `img_url` varchar(2048) DEFAULT NULL,
    `priority` int(2) NOT NULL DEFAULT `0`,
    `normal_price` int(10) NOT NULL DEFAULT `0`,
    `promotion_price` int(10) NOT NULL DEFAULT `0`,
    `create_time` datetime DEFAULT NULL,
    `last_edit_time` datetime DEFAULT NULL,
    `status` int(1) NOT NULL DEFAULT `2` COMMENT `0启用 1禁用 2审核`,
    `shop_id` int(10) NOT NULL,
    `banner_id` int(10) DEFAULT NULL,
    `category_id` int(10) NOT NULL,
    primary key(`product_id`),
    unique key `UK_shop_name`(`name`),
    constraint `fk_product_shop` foreign key(`shop_id`) references `tb_shop`(`shop_id`),
    constraint `fk_product_banner` foreign key(`banner_id`) references `tb_product_banner`(`banner_id`),
    constraint `fk_product_category` foreign key(`product_category_id`) references `tb_product_category`(`product_category_id`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;

SQL

  • 增加唯一索引
alter table tb_wechat_auth add unique index(open_id)
  • 修改表名
alter table o2o rename tb_area
  • 添加表列
alter table tb_area add column name varchar(10)
  • 删除表列
alter table tb_area drop column name
  • 修改表列类型1
alter table tb_area modify address char(10) 
  • 修改表列类型2
alter table tb_area change address address char(40)  
  • 修改表列名
alter table tb_area change column address address1 varchar(30)
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,014评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,796评论 3 386
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,484评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,830评论 1 285
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,946评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,114评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,182评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,927评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,369评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,678评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,832评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,533评论 4 335
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,166评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,885评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,128评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,659评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,738评论 2 351

推荐阅读更多精彩内容