營銷模組資料庫表解析(二)
SpringBoot實戰電商專案mall(20k+star)地址:
摘要
本文主要對優惠券功能相關表進行解析,採用資料庫表與功能對照的形式。
相關表結構
優惠券表
用於儲存優惠券資訊,需要注意的是優惠券的使用型別:0->全場通用;1->指定分類;2->指定商品,不同使用型別的優惠券使用範圍不一樣。
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)
);
優惠券歷史記錄表
用於儲存會員領取及使用優惠券的記錄,當會員領取到優惠券時,會產生一條優惠券的記錄,需要注意的是它的使用狀態:0->未使用;1->已使用;2->已過期。
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)
);
管理端展現
優惠券列表
編輯優惠券
全場通用
指定商品
指定分類
檢視優惠券
移動端展現
我的優惠券
未使用
已使用
已過期
優惠券詳情
關於作者
macrozheng 【id:macrozheng】
專注Java技術分享,全套學習教程連載中,作者Github專案mall(20k+star)
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/4479/viewspace-2823715/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 營銷模組資料庫表解析:優惠券功能資料庫
- SOFARegistry 原始碼|資料同步模組解析原始碼
- django哪個模組配置資料庫Django資料庫
- python資料庫模組-Cx_OraclePython資料庫Oracle
- 2023年全球首席營銷官文化營銷投資比例(附原資料表)
- Python全棧MongoDB資料庫(聚合、二進位制、GridFS、pymongo模組)Python全棧MongoDB資料庫
- springboot建立與資料庫關聯模組Spring Boot資料庫
- json解析模組JSON
- 2022年全球主要記憶體模組廠商營收及同比(附原資料表) 記憶體營收
- 促銷模組
- Python資料庫模組(sqlite3,SQLite3)Python資料庫SQLite
- QT繪圖模組與資料庫的結合QT繪圖資料庫
- 2020年,您的營銷預算是?(附原資料表)
- 2022年全球主要記憶體模組廠商營收市場份額(附原資料表) 記憶體營收
- SAP S4 Material Management 庫存模組 MARD 資料庫表讀取技術細節介紹資料庫
- JavaScript 模組化解析JavaScript
- 資料分析---matplotlib模組
- 資料分析---pandas模組
- MySQL—-MySQL資料庫入門—-第二章 資料庫和表的基本操作MySql資料庫
- openGauss資料庫原始碼解析系列文章——openGauss簡介(二)資料庫原始碼
- 2022年全球首席營銷官選擇可持續營銷障礙比例(附原資料表)
- 2023年全球首席營銷官選擇可持續營銷障礙比例(附原資料表)
- 2020年及以後,營銷人員將更多地依賴哪些營銷策略?(附原資料表)
- Tensorflow的資料輸入模組tf.data模組
- 【node】模組解析之 httpHTTP
- Dubbo的Remoting模組解析REM
- MySQL資料庫(二)MySql資料庫
- 建立資料庫表資料庫
- 記憶體資料庫解析與主流產品對比(二)記憶體資料庫
- 22_Oracle資料庫全表掃描詳解(二)Oracle資料庫
- 真菌基因組資料庫資料庫
- Econsultancy:暗資料營銷報告
- 評論模組 – 後端資料庫設計及功能實現後端資料庫
- 評論模組 - 後端資料庫設計及功能實現後端資料庫
- 2023年中國品牌首要營銷目標(附原資料表)
- 2023年全球首席營銷官使用技術比例(附原資料表)
- PostgreSQL:表空間-->資料庫-->表SQL資料庫
- 2023年12月全球B2C營銷人員主要使用營銷渠道比例(附原資料表)