因为在家闲着无聊,也没有面试邀请,就让大佬给我推荐了个电商项目去做,也是从头锻炼一下自己,不要得过且过,原作者的Github地址我会放到
下面,这个是建库语句,方便大家审阅,也方便自己按照表结构来做需求
商品分类表
create table pms_product_category
(
id bigint not null auto_increment,
parent_id bigint comment '上级分类的编号:0表示一级分类',
name varchar(64) comment '名称',
level int(1) comment '分类级别:0->1级;1->2级',
product_count int comment '商品数量',
product_unit varchar(64) comment '商品单位',
nav_status int(1) comment '是否显示在导航栏:0->不显示;1->显示',
show_status int(1) comment '显示状态:0->不显示;1->显示',
sort int comment '排序',
icon varchar(255) comment '图标',
keywords varchar(255) comment '关键字',
description text comment '描述',
primary key (id)
);
商品品牌表
create table pms_brand
(
id bigint not null auto_increment,
name varchar(64) comment '名称',
first_letter varchar(8) comment '首字母',
sort int comment '排序',
factory_status int(1) comment '是否为品牌制造商:0->不是;1->是',
show_status int(1) comment '是否显示',
product_count int comment '产品数量',
product_comment_count int comment '产品评论数量',
logo varchar(255) comment '品牌logo',
big_pic varchar(255) comment '专区大图',
brand_story text comment '品牌故事',
primary key (id)
);
商品属性分类表
create table pms_product_attribute_category
(
id bigint not null auto_increment,
name varchar(64) comment '名称',
attribute_count int comment '属性数量',
param_count int comment '参数数量',
primary key (id)
);
商品属性表
create table pms_product_attribute
(
id bigint not null auto_increment,
product_attribute_category_id bigint comment '商品属性分类id',
name varchar(64) comment '名称',
select_type int(1) comment '属性选择类型:0->唯一;1->单选;2->多选;对应属性和参数意义不同;',
input_type int(1) comment '属性录入方式:0->手工录入;1->从列表中选取',
input_list varchar(255) comment '可选值列表,以逗号隔开',
sort int comment '排序字段:最高的可以单独上传图片',
filter_type int(1) comment '分类筛选样式:1->普通;1->颜色',
search_type int(1) comment '检索类型;0->不需要进行检索;1->关键字检索;2->范围检索',
related_status int(1) comment '相同属性产品是否关联;0->不关联;1->关联',
hand_add_status int(1) comment '是否支持手动新增;0->不支持;1->支持',
type int(1) comment '属性的类型;0->规格;1->参数',
primary key (id)
);
商品属性值表
create table pms_product_attribute_value
(
id bigint not null auto_increment,
product_id bigint comment '商品id',
product_attribute_id bigint comment '商品属性id',
value varchar(64) comment '手动添加规格或参数的值,参数单值,规格有多个时以逗号隔开',
primary key (id)
);
商品分类和属性的关系表
create table pms_product_category_attribute_relation
(
id bigint not null auto_increment,
product_category_id bigint comment '商品分类id',
product_attribute_id bigint comment '商品属性id',
primary key (id)
);
商品表
create table pms_product
(
id bigint not null auto_increment,
brand_id bigint comment '品牌id',
product_category_id bigint comment '品牌分类id',
feight_template_id bigint comment '运费模版id',
product_attribute_category_id bigint comment '品牌属性分类id',
name varchar(64) not null comment '商品名称',
pic varchar(255) comment '图片',
product_sn varchar(64) not null comment '货号',
delete_status int(1) comment '删除状态:0->未删除;1->已删除',
publish_status int(1) comment '上架状态:0->下架;1->上架',
new_status int(1) comment '新品状态:0->不是新品;1->新品',
recommand_status int(1) comment '推荐状态;0->不推荐;1->推荐',
verify_status int(1) comment '审核状态:0->未审核;1->审核通过',
sort int comment '排序',
sale int comment '销量',
price decimal(10,2) comment '价格',
promotion_price decimal(10,2) comment '促销价格',
gift_growth int default 0 comment '赠送的成长值',
gift_point int default 0 comment '赠送的积分',
use_point_limit int comment '限制使用的积分数',
sub_title varchar(255) comment '副标题',
description text comment '商品描述',
original_price decimal(10,2) comment '市场价',
stock int comment '库存',
low_stock int comment '库存预警值',
unit varchar(16) comment '单位',
weight decimal(10,2) comment '商品重量,默认为克',
preview_status int(1) comment '是否为预告商品:0->不是;1->是',
service_ids varchar(64) comment '以逗号分割的产品服务:1->无忧退货;2->快速退款;3->免费包邮',
keywords varchar(255) comment '关键字',
note varchar(255) comment '备注',
album_pics varchar(255) comment '画册图片,连产品图片限制为5张,以逗号分割',
detail_title varchar(255) comment '详情标题',
detail_desc text comment '详情描述',
detail_html text comment '产品详情网页内容',
detail_mobile_html text comment '移动端网页详情',
promotion_start_time datetime comment '促销开始时间',
promotion_end_time datetime comment '促销结束时间',
promotion_per_limit int comment '活动限购数量',
promotion_type int(1) comment '促销类型:0->没有促销使用原价;1->使用促销价;2->使用会员价;3->使用阶梯价格;4->使用满减价格;5->限时购',
product_category_name varchar(255) comment '产品分类名称',
brand_name varchar(255) comment '品牌名称',
primary key (id)
);
商品SKU表_SKU(存货单位)是指库存量单位,SPU(标准产品单位)是指标准产品单位。举个例子:iphone xs是一个SPU,而iphone xs公开版64G银色是一个SKU。
create table pms_sku_stock
(
id bigint not null auto_increment,
product_id bigint comment '商品id',
sku_code varchar(64) not null comment 'sku编码',
price decimal(10,2) comment '价格',
stock int default 0 comment '库存',
low_stock int comment '预警库存',
sp1 varchar(64) comment '规格属性1',
sp2 varchar(64) comment '规格属性2',
sp3 varchar(64) comment '规格属性3',
pic varchar(255) comment '展示图片',
sale int comment '销量',
promotion_price decimal(10,2) comment '单品促销价格',
lock_stock int default 0 comment '锁定库存',
primary key (id)
);
商品阶梯价格表
create table pms_product_ladder
(
id bigint not null auto_increment,
product_id bigint comment '商品id',
count int comment '满足的商品数量',
discount decimal(10,2) comment '折扣',
price decimal(10,2) comment '折后价格',
primary key (id)
);
商品满减表
create table pms_product_full_reduction
(
id bigint not null auto_increment,
product_id bigint comment '商品id',
full_price decimal(10,2) comment '商品满足金额',
reduce_price decimal(10,2) comment '商品减少金额',
primary key (id)
);
商品会员价格表
create table pms_member_price
(
id bigint not null auto_increment,
product_id bigint comment '商品id',
member_level_id bigint comment '会员等级id',
member_price decimal(10,2) comment '会员价格',
member_level_name varchar(100) comment '会员等级名称',
primary key (id)
);
商品评价表
create table pms_comment
(
id bigint not null auto_increment,
product_id bigint comment '商品id',
member_nick_name varchar(255) comment '会员昵称',
product_name varchar(255) comment '商品名称',
star int(3) comment '评价星数:0->5',
member_ip varchar(64) comment '评价的ip',
create_time datetime comment '创建时间',
show_status int(1) comment '是否显示',
product_attribute varchar(255) comment '购买时的商品属性',
collect_couont int comment '收藏数',
read_count int comment '阅读数',
content text comment '内容',
pics varchar(1000) comment '上传图片地址,以逗号隔开',
member_icon varchar(255) comment '评论用户头像',
replay_count int comment '回复数',
primary key (id)
);
产品评价回复表
create table pms_comment_replay
(
id bigint not null auto_increment,
comment_id bigint comment '评论id',
member_nick_name varchar(255) comment '会员昵称',
member_icon varchar(255) comment '会员头像',
content varchar(1000) comment '内容',
create_time datetime comment '创建时间',
type int(1) comment '评论人员类型;0->会员;1->管理员',
primary key (id)
);
商品审核记录表
create table pms_product_vertify_record
(
id bigint not null auto_increment,
product_id bigint comment '商品id',
create_time datetime comment '创建时间',
vertify_man varchar(64) comment '审核人',
status int(1) comment '审核后的状态:0->未通过;2->已通过',
detail varchar(255) comment '反馈详情',
primary key (id)
);
商品操作记录表
create table pms_product_operate_log
(
id bigint not null auto_increment,
product_id bigint comment '商品id',
price_old decimal(10,2) comment '改变前价格',
price_new decimal(10,2) comment '改变后价格',
sale_price_old decimal(10,2) comment '改变前优惠价',
sale_price_new decimal(10,2) comment '改变后优惠价',
gift_point_old int comment '改变前积分',
gift_point_new int comment '改变后积分',
use_point_limit_old int comment '改变前积分使用限制',
use_point_limit_new int comment '改变后积分使用限制',
operate_man varchar(64) comment '操作人',
create_time datetime comment '创建时间',
primary key (id)
);
订单表
create table oms_order
(
id bigint not null auto_increment comment '订单id',
member_id bigint not null comment '会员id',
coupon_id bigint comment '优惠券id',
order_sn varchar(64) comment '订单编号',
create_time datetime comment '提交时间',
member_username varchar(64) comment '用户帐号',
total_amount decimal(10,2) comment '订单总金额',
pay_amount decimal(10,2) comment '应付金额(实际支付金额)',
freight_amount decimal(10,2) comment '运费金额',
promotion_amount decimal(10,2) comment '促销优化金额(促销价、满减、阶梯价)',
integration_amount decimal(10,2) comment '积分抵扣金额',
coupon_amount decimal(10,2) comment '优惠券抵扣金额',
discount_amount decimal(10,2) comment '管理员后台调整订单使用的折扣金额',
pay_type int(1) comment '支付方式:0->未支付;1->支付宝;2->微信',
source_type int(1) comment '订单来源:0->PC订单;1->app订单',
status int(1) comment '订单状态:0->待付款;1->待发货;2->已发货;3->已完成;4->已关闭;5->无效订单',
order_type int(1) comment '订单类型:0->正常订单;1->秒杀订单',
delivery_company varchar(64) comment '物流公司(配送方式)',
delivery_sn varchar(64) comment '物流单号',
auto_confirm_day int comment '自动确认时间(天)',
integration int comment '可以获得的积分',
growth int comment '可以活动的成长值',
promotion_info varchar(100) comment '活动信息',
bill_type int(1) comment '发票类型:0->不开发票;1->电子发票;2->纸质发票',
bill_header varchar(200) comment '发票抬头',
bill_content varchar(200) comment '发票内容',
bill_receiver_phone varchar(32) comment '收票人电话',
bill_receiver_email varchar(64) comment '收票人邮箱',
receiver_name varchar(100) not null comment '收货人姓名',
receiver_phone varchar(32) not null comment '收货人电话',
receiver_post_code varchar(32) comment '收货人邮编',
receiver_province varchar(32) comment '省份/直辖市',
receiver_city varchar(32) comment '城市',
receiver_region varchar(32) comment '区',
receiver_detail_address varchar(200) comment '详细地址',
note varchar(500) comment '订单备注',
confirm_status int(1) comment '确认收货状态:0->未确认;1->已确认',
delete_status int(1) not null default 0 comment '删除状态:0->未删除;1->已删除',
use_integration int comment '下单时使用的积分',
payment_time datetime comment '支付时间',
delivery_time datetime comment '发货时间',
receive_time datetime comment '确认收货时间',
comment_time datetime comment '评价时间',
modify_time datetime comment '修改时间',
primary key (id)
);
订单商品信息表
create table oms_order_item
(
id bigint not null auto_increment,
order_id bigint comment '订单id',
order_sn varchar(64) comment '订单编号',
product_id bigint comment '商品id',
product_pic varchar(500) comment '商品图片',
product_name varchar(200) comment '商品名称',
product_brand varchar(200) comment '商品品牌',
product_sn varchar(64) comment '商品条码',
product_price decimal(10,2) comment '销售价格',
product_quantity int comment '购买数量',
product_sku_id bigint comment '商品sku编号',
product_sku_code varchar(50) comment '商品sku条码',
product_category_id bigint comment '商品分类id',
sp1 varchar(100) comment '商品的销售属性1',
sp2 varchar(100) comment '商品的销售属性2',
sp3 varchar(100) comment '商品的销售属性3',
promotion_name varchar(200) comment '商品促销名称',
promotion_amount decimal(10,2) comment '商品促销分解金额',
coupon_amount decimal(10,2) comment '优惠券优惠分解金额',
integration_amount decimal(10,2) comment '积分优惠分解金额',
real_amount decimal(10,2) comment '该商品经过优惠后的分解金额',
gift_integration int not null default 0 comment '商品赠送积分',
gift_growth int not null default 0 comment '商品赠送成长值',
product_attr varchar(500) comment '商品销售属性:[{"key":"颜色","value":"颜色"},{"key":"容量","value":"4G"}]',
primary key (id)
);
订单操作记录表
create table oms_order_operate_history
(
id bigint not null auto_increment,
order_id bigint comment '订单id',
operate_man varchar(100) comment '操作人:用户;系统;后台管理员',
create_time datetime comment '操作时间',
order_status int(1) comment '订单状态:0->待付款;1->待发货;2->已发货;3->已完成;4->已关闭;5->无效订单',
note varchar(500) comment '备注',
primary key (id)
);
订单设置表
create table oms_order_setting
(
id bigint not null auto_increment,
flash_order_overtime int comment '秒杀订单超时关闭时间(分)',
normal_order_overtime int comment '正常订单超时时间(分)',
confirm_overtime int comment '发货后自动确认收货时间(天)',
finish_overtime int comment '自动完成交易时间,不能申请售后(天)',
comment_overtime int comment '订单完成后自动好评时间(天)',
primary key (id)
);
购物车表
create table oms_cart_item
(
id bigint not null auto_increment,
product_id bigint comment '商品的id',
product_sku_id bigint comment '商品sku的id',
member_id bigint comment '会员id',
quantity int comment '购买数量',
price decimal(10,2) comment '添加到购物车的价格',
sp1 varchar(200) comment '销售属性1',
sp2 varchar(200) comment '销售属性2',
sp3 varchar(200) comment '销售属性3',
product_pic varchar(1000) comment '商品主图',
product_name varchar(500) comment '商品名称',
product_brand varchar(200) comment '商品品牌',
product_sn varchar(200) comment '商品的条码',
product_sub_title varchar(500) comment '商品副标题(卖点)',
product_sku_code varchar(200) comment '商品sku条码',
member_nickname varchar(500) comment '会员昵称',
create_date datetime comment '创建时间',
modify_date datetime comment '修改时间',
delete_status int(1) default 0 comment '是否删除',
product_category_id bigint comment '商品的分类',
product_attr varchar(500) comment '商品销售属性:[{"key":"颜色","value":"银色"},{"key":"容量","value":"4G"}]',
primary key (id)
);
订单退货申请表
create table oms_order_return_apply
(
id bigint not null auto_increment,
order_id bigint comment '订单id',
company_address_id bigint comment '收货地址表id',
product_id bigint comment '退货商品id',
order_sn varchar(64) comment '订单编号',
create_time datetime comment '申请时间',
member_username varchar(64) comment '会员用户名',
return_amount decimal(10,2) comment '退款金额',
return_name varchar(100) comment '退货人姓名',
return_phone varchar(100) comment '退货人电话',
status int(1) comment '申请状态:0->待处理;1->退货中;2->已完成;3->已拒绝',
handle_time datetime comment '处理时间',
product_pic varchar(500) comment '商品图片',
product_name varchar(200) comment '商品名称',
product_brand varchar(200) comment '商品品牌',
product_attr varchar(500) comment '商品销售属性:颜色:红色;尺码:xl;',
product_count int comment '退货数量',
product_price decimal(10,2) comment '商品单价',
product_real_price decimal(10,2) comment '商品实际支付单价',
reason varchar(200) comment '原因',
description varchar(500) comment '描述',
proof_pics varchar(1000) comment '凭证图片,以逗号隔开',
handle_note varchar(500) comment '处理备注',
handle_man varchar(100) comment '处理人员',
receive_man varchar(100) comment '收货人',
receive_time datetime comment '收货时间',
receive_note varchar(500) comment '收货备注',
primary key (id)
);
公司收货地址表
create table oms_company_address
(
id bigint not null auto_increment,
address_name varchar(200) comment '地址名称',
send_status int(1) comment '默认发货地址:0->否;1->是',
receive_status int(1) comment '是否默认收货地址:0->否;1->是',
name varchar(64) comment '收发货人姓名',
phone varchar(64) comment '收货人电话',
province varchar(64) comment '省/直辖市',
city varchar(64) comment '市',
region varchar(64) comment '区',
detail_address varchar(200) comment '详细地址',
primary key (id)
);
订单退货原因表
create table oms_order_return_reason
(
id bigint not null auto_increment,
name varchar(100) comment '退货类型',
sort int,
status int(1) comment '状态:0->不启用;1->启用',
create_time datetime comment '添加时间',
primary key (id)
);
限时购表
create table sms_flash_promotion
(
id bigint not null auto_increment,
title varchar(200) comment '标题',
start_date date comment '开始日期',
end_date date comment '结束日期',
status int(1) comment '上下线状态',
create_time datetime comment '创建时间',
primary key (id)
);
限时购场次表
create table sms_flash_promotion_session
(
id bigint not null auto_increment comment '编号',
name varchar(200) comment '场次名称',
start_time time comment '每日开始时间',
end_time time comment '每日结束时间',
status int(1) comment '启用状态:0->不启用;1->启用',
create_time datetime comment '创建时间',
primary key (id)
);
限时购与商品关系表
create table sms_flash_promotion_product_relation
(
id bigint not null auto_increment,
flash_promotion_id bigint comment '限时购id',
flash_promotion_session_id bigint comment '编号',
product_id bigint comment '商品价格',
flash_promotion_price decimal(10,2) comment '限时购价格',
flash_promotion_count int comment '限时购数量',
flash_promotion_limit int comment '每人限购数量',
sort int comment '排序',
primary key (id)
);
限时购通知记录表
create table sms_flash_promotion_log
(
id int not null auto_increment,
member_id int comment '会员id',
product_id bigint comment '商品id',
member_phone varchar(64) comment '会员电话',
product_name varchar(100) comment '商品名称',
subscribe_time datetime comment '会员订阅时间',
send_time datetime comment '发送时间',
primary key (id)
);
优惠券表
create table sms_coupon
(
id bigint not null auto_increment,
type int(1) comment '优惠卷类型;0->全场赠券;1->会员赠券;2->购物赠券;3->注册赠券',
name varchar(100) comment '名称',
platform int(1) comment '使用平台:0->全部;1->移动;2->PC',
count int comment '数量',
amount decimal(10,2) comment '金额',
per_limit int comment '每人限领张数',
min_point decimal(10,2) comment '使用门槛;0表示无门槛',
start_time datetime comment '开始使用时间',
end_time datetime comment '结束使用时间',
use_type int(1) comment '使用类型:0->全场通用;1->指定分类;2->指定商品',
note varchar(200) comment '备注',
publish_count int comment '发行数量',
use_count int comment '已使用数量',
receive_count int comment '领取数量',
enable_time datetime comment '可以领取的日期',
code varchar(64) comment '优惠码',
member_level int(1) comment '可领取的会员类型:0->无限制',
primary key (id)
);
优惠券历史记录表
create table sms_coupon_history
(
id bigint not null auto_increment,
coupon_id bigint comment '优惠券id',
member_id bigint comment '会员id',
order_id bigint comment '订单id',
coupon_code varchar(64) comment '优惠券码',
member_nickname varchar(64) comment '领取人昵称',
get_type int(1) comment '获取类型:0->后台赠送;1->主动获取',
create_time datetime comment '创建时间',
use_status int(1) comment '使用状态:0->未使用;1->已使用;2->已过期',
use_time datetime comment '使用时间',
order_sn varchar(100) comment '订单号码',
primary key (id)
);
优惠券和商品的关系表
create table sms_coupon_product_relation
(
id bigint not null auto_increment,
coupon_id bigint comment '优惠券id',
product_id bigint comment '商品id',
product_name varchar(500) comment '商品名称',
product_sn varchar(200) comment '商品条码',
primary key (id)
);
优惠券和商品分类关系表
create table sms_coupon_product_category_relation
(
id bigint not null auto_increment,
coupon_id bigint comment '优惠券id',
product_category_id bigint comment '商品分类id',
product_category_name varchar(200) comment '商品分类名称',
parent_category_name varchar(200) comment '父分类名称',
primary key (id)
);
首页品牌推荐表
create table sms_home_brand
(
id bigint not null auto_increment,
brand_id bigint comment '商品品牌id',
brand_name varchar(64) comment '商品品牌名称',
recommend_status int(1) comment '推荐状态:0->不推荐;1->推荐',
sort int comment '排序',
primary key (id)
);
新品推荐商品表
create table sms_home_new_product
(
id bigint not null auto_increment,
product_id bigint comment '商品id',
product_name varchar(64) comment '商品名称',
recommend_status int(1) comment '推荐状态:0->不推荐;1->推荐',
sort int(1) comment '排序',
primary key (id)
);
人气推荐商品表
create table sms_home_recommend_product
(
id bigint not null auto_increment,
product_id bigint,
product_name varchar(64),
recommend_status int(1),
sort int(1),
primary key (id)
);
首页专题推荐表
create table sms_home_recommend_subject
(
id bigint not null auto_increment,
subject_id bigint comment '专题id',
subject_name varchar(64) comment '专题名称',
recommend_status int(1) comment '推荐状态:0->不推荐;1->推荐',
sort int comment '排序',
primary key (id)
);
首页轮播广告表
create table sms_home_advertise
(
id bigint not null auto_increment,
name varchar(100) comment '名称',
type int(1) comment '轮播位置:0->PC首页轮播;1->app首页轮播',
pic varchar(500) comment '图片地址',
start_time datetime comment '开始时间',
end_time datetime comment '结束时间',
status int(1) comment '上下线状态:0->下线;1->上线',
click_count int comment '点击数',
order_count int comment '下单数',
url varchar(500) comment '链接地址',
note varchar(500) comment '备注',
sort int default 0 comment '排序',
primary key (id)
);