You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
290 B
JSON
22 lines
290 B
JSON
12 months ago
|
|
||
|
// orders
|
||
|
{
|
||
|
"_id":"or101",
|
||
|
"name": "Backpack",
|
||
|
"description":"Light Weight and Water Proof",
|
||
|
"price": 1000,
|
||
|
"stocks":"200",
|
||
|
"isActive":true,
|
||
|
"sku":"true"
|
||
|
|
||
|
}
|
||
|
|
||
|
// orders Product
|
||
|
{
|
||
|
"_id":"or102",
|
||
|
"orderId":"101",
|
||
|
"productId":"001",
|
||
|
"quantity":"1",
|
||
|
"price":1000,
|
||
|
"subTotal":1000
|
||
|
}
|