mirror of
https://gitee.com/dcloud/opendb.git
synced 2024-11-10 11:09:44 +08:00
add 电商系统
This commit is contained in:
parent
eced98208e
commit
80ae92fa29
@ -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
55
uni-mall.md
Normal 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 | 是 | 商品ID,uni-mall-goods 表中的`_id`字段 |
|
||||
| user_id | String | 是 | 评论者ID,参考`uni-id-users` 表 |
|
||||
| comment_content | String | 是 | 评论内容 |
|
||||
| comment_date | Timestamp | 否 | 评论发表时间 |
|
||||
| comment_ip | String | 否 | 评论发表时 IP 地址 |
|
Loading…
Reference in New Issue
Block a user