查看原文
其他

营销模块数据库表解析:首页内容推荐功能

梦想de星空 macrozheng 2020-08-20
来自专辑
mall学习教程(业务篇)

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

相关表结构

首页品牌推荐表

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

  1. create table sms_home_brand

  2. (

  3. id bigint not null auto_increment,

  4. brand_id bigint comment '商品品牌id',

  5. brand_name varchar(64) comment '商品品牌名称',

  6. recommend_status int(1) comment '推荐状态:0->不推荐;1->推荐',

  7. sort int comment '排序',

  8. primary key (id)

  9. );

新品推荐商品表

用于管理首页显示的新鲜好物信息。

  1. create table sms_home_new_product

  2. (

  3. id bigint not null auto_increment,

  4. product_id bigint comment '商品id',

  5. product_name varchar(64) comment '商品名称',

  6. recommend_status int(1) comment '推荐状态:0->不推荐;1->推荐',

  7. sort int(1) comment '排序',

  8. primary key (id)

  9. );

人气推荐商品表

用于管理首页显示的人气推荐信息。

  1. create table sms_home_recommend_product

  2. (

  3. id bigint not null auto_increment,

  4. product_id bigint,

  5. product_name varchar(64),

  6. recommend_status int(1),

  7. sort int(1),

  8. primary key (id)

  9. );

首页专题推荐表

用于管理首页显示的专题精选信息。

  1. create table sms_home_recommend_subject

  2. (

  3. id bigint not null auto_increment,

  4. subject_id bigint comment '专题id',

  5. subject_name varchar(64) comment '专题名称',

  6. recommend_status int(1) comment '推荐状态:0->不推荐;1->推荐',

  7. sort int comment '排序',

  8. primary key (id)

  9. );

首页轮播广告表

用于管理首页显示的轮播广告信息。

  1. create table sms_home_advertise

  2. (

  3. id bigint not null auto_increment,

  4. name varchar(100) comment '名称',

  5. type int(1) comment '轮播位置:0->PC首页轮播;1->app首页轮播',

  6. pic varchar(500) comment '图片地址',

  7. start_time datetime comment '开始时间',

  8. end_time datetime comment '结束时间',

  9. status int(1) comment '上下线状态:0->下线;1->上线',

  10. click_count int comment '点击数',

  11. order_count int comment '下单数',

  12. url varchar(500) comment '链接地址',

  13. note varchar(500) comment '备注',

  14. sort int default 0 comment '排序',

  15. primary key (id)

  16. );

管理端展现

品牌推荐列表

选择品牌

新品推荐列表

选择商品

人气推荐列表

选择商品

专题推荐列表

选择专题

广告列表

编辑广告

移动端展现

首页轮播广告

品牌制造商直供

新鲜好物

人气推荐

专题精选

推荐阅读




欢迎关注,点个在看

    您可能也对以下帖子感兴趣

    文章有问题?点此查看未经处理的缓存