为了账号安全,请及时绑定邮箱和手机立即绑定

营销模块数据库表解析(三)

标签:
Java MySQL

SpringBoot实战电商项目mall(20k+star)地址:https://github.com/macrozheng/mall

摘要

本文主要对首页内容推荐功能相关表进行解析,采用数据库表与功能对照的形式。

相关表结构

首页品牌推荐表

用于管理首页显示的品牌制造商直供信息。

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)  
);  

管理端展现

品牌推荐列表

展示图片

选择品牌

展示图片

新品推荐列表

展示图片

选择商品

展示图片

人气推荐列表

展示图片

选择商品

展示图片

专题推荐列表

展示图片

选择专题

展示图片

广告列表

展示图片

编辑广告

展示图片

移动端展现

首页轮播广告

展示图片

品牌制造商直供

展示图片

新鲜好物

展示图片

人气推荐

展示图片

专题精选

展示图片

关于作者

macrozheng 【id:macrozheng】
专注Java技术分享,mall项目全套学习教程连载中,作者Github项目mall(20k+star)

点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
JAVA开发工程师
手记
粉丝
68
获赞与收藏
282

关注作者,订阅最新文章

阅读免费教程

  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消