mirror of
https://gitee.com/dcloud/opendb.git
synced 2024-12-26 22:41:15 +08:00
add sku table
This commit is contained in:
parent
7ab5d0356b
commit
f88429a41f
40
collection/opendb-mall-sku/collection.json
Normal file
40
collection/opendb-mall-sku/collection.json
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
{
|
||||||
|
"schema": {
|
||||||
|
"bsonType": "object",
|
||||||
|
"required": ["goods_id", "sku_name", "price", "stock", "create_date", "update_date"],
|
||||||
|
"properties": {
|
||||||
|
"_id": {
|
||||||
|
"description": "存储文档 ID(SKU ID),系统自动生成"
|
||||||
|
},
|
||||||
|
"goods_id": {
|
||||||
|
"bsonType": "string",
|
||||||
|
"description": "商品 id,参考 opendb-mall-goods 表"
|
||||||
|
},
|
||||||
|
"sku_name": {
|
||||||
|
"bsonType": "string",
|
||||||
|
"description": "SKU名称"
|
||||||
|
},
|
||||||
|
"price": {
|
||||||
|
"bsonType": "int",
|
||||||
|
"description": "价格"
|
||||||
|
},
|
||||||
|
"market_price": {
|
||||||
|
"bsonType": "int",
|
||||||
|
"description": "市场价"
|
||||||
|
},
|
||||||
|
"stock": {
|
||||||
|
"bsonType": "int",
|
||||||
|
"description": "库存"
|
||||||
|
},
|
||||||
|
"create_date": {
|
||||||
|
"bsonType": "timestamp",
|
||||||
|
"description": "创建时间"
|
||||||
|
},
|
||||||
|
"update_date": {
|
||||||
|
"bsonType": "timestamp",
|
||||||
|
"description": "修改时间"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"index": []
|
||||||
|
}
|
17
collection/opendb-mall-sku/package.json
Normal file
17
collection/opendb-mall-sku/package.json
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"name": "@opendb/opendb-mall-sku",
|
||||||
|
"version": "0.0.1",
|
||||||
|
"description": "opendb-mall-sku",
|
||||||
|
"keywords": ["电商系统", "SKU"],
|
||||||
|
"opendb": {
|
||||||
|
"title": "SKU",
|
||||||
|
"type": "collection",
|
||||||
|
"contributors": [
|
||||||
|
{
|
||||||
|
"name": "DCloud",
|
||||||
|
"email": "",
|
||||||
|
"homepage": "https://gitee.com/dcloud/opendb"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
@ -2,5 +2,6 @@
|
|||||||
"uni-id-users": {},
|
"uni-id-users": {},
|
||||||
"opendb-mall-goods": {},
|
"opendb-mall-goods": {},
|
||||||
"opendb-mall-categories": {},
|
"opendb-mall-categories": {},
|
||||||
"opendb-mall-comments": {}
|
"opendb-mall-comments": {},
|
||||||
|
"opendb-mall-sku": {}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user