opendb/uni-mall.md

3.2 KiB
Raw Blame History

电商系统

商品表

表名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-mall-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 地址