add 电商系统

This commit is contained in:
hbcui1984 2020-07-29 14:48:32 +08:00
parent eced98208e
commit 80ae92fa29
2 changed files with 57 additions and 1 deletions

View File

@ -8,3 +8,4 @@ uni_db_spec意图搭建好这个软基建支撑uniCloud数字生态的发展
1. [用户管理uni-id](uni-id.md)
2. [文章&评论uni-news](uni-news.md)
3. [电商系统uni-mall](uni-mall.md)

55
uni-mall.md Normal file
View File

@ -0,0 +1,55 @@
## 电商系统
### 商品表
表名uni-mall-goods
| 字段 | 类型 | 必填| 描述 |
| ---------------- | --------- | ----| ------------------------------------------- |
| \_id | Object ID | 是 | 存储文档 ID文章 ID系统自动生成 |
| category_id | String | 否 | 分类 id参考`uni-mall-categories`表 |
| goods_sn | String | 是 | 商品的唯一货号 |
| name | String | 是 | 商品名称 |
| keywords | String | 否 | 商品关键字,为搜索引擎收录使用 |
| goods_desc | String | 否 | 商品详细描述 |
| goods_thumb | String | 否 | 商品缩略图,用于在列表或搜索结果中预览显示 |
| goods_banner_imgs | Array | 否 | 商品详情页的banner图地址 |
| remain_count | Integer | 是 | 库存数量 |
| month_sell_count | Integer | 是 | 月销量 |
| total_sell_count | Integer | 是 | 总销量 |
| comment_count | Integer | 是 | 累计评论数 |
| is_real | Boolean | 是 | 是否实物 |
| is_on_sale | Boolean | 是 | 是否上架销售 |
| is_alone_sale | Boolean | 是 | 是否能单独销售;如果不能单独销售,则只能作为某商品的配件或者赠品销售|
| is_best | Boolean | 是 | 是否精品 |
| is_new | Boolean | 是 | 是否新品 |
| is_hot | Boolean | 是 | 是否热销 |
| add_date | Timestamp | 否 | 上架时间 |
| last_modify_date | Timestamp | 否 | 最后修改时间 |
| seller_note | String | 否 | 商家备注,仅商家可见 |
### 商品类别
表名uni-mall-categories
| 字段 | 类型 | 必填| 描述 |
| ----------------| --------- | ----| ------------------------------------------- |
| \_id | Object ID | 是 | 存储文档 ID文章 ID系统自动生成 |
| name | String | 是 | 类别名称 |
| description | String | 是 | 类别描述 |
| create_date | Timestamp | 否 | 创建时间 |
### 商品评论表
表名uni-news-comments
| 字段 | 类型 | 必填| 描述 |
| ----------------| --------- | ----| ------------------------------------------- |
| \_id | Object ID | 是 | 存储文档 ID文章 ID系统自动生成 |
| goods_id | String | 是 | 商品IDuni-mall-goods 表中的`_id`字段 |
| user_id | String | 是 | 评论者ID参考`uni-id-users` 表 |
| comment_content | String | 是 | 评论内容 |
| comment_date | Timestamp | 否 | 评论发表时间 |
| comment_ip | String | 否 | 评论发表时 IP 地址 |