opendb/collection/opendb-mall-sku/collection.json
2020-08-20 17:27:01 +08:00

41 lines
966 B
JSON
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
"schema": {
"bsonType": "object",
"required": ["goods_id", "sku_name", "price", "stock", "create_date", "update_date"],
"properties": {
"_id": {
"description": "存储文档 IDSKU 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": []
}