First running version

This commit is contained in:
qingjie.du
2026-03-30 17:39:13 +09:00
parent 5ffea3d849
commit bce2a5672c
67 changed files with 16503 additions and 0 deletions

View File

@@ -0,0 +1,42 @@
[
{
"customerId": "C001",
"name": "田中 花子",
"email": "hanako.tanaka@example.com",
"cancelTendency": "high",
"cancelTendencyReason": "雨天キャンセル傾向",
"reservations": ["R001", "R003"]
},
{
"customerId": "C002",
"name": "山田 太郎",
"email": "taro.yamada@example.com",
"cancelTendency": "high",
"cancelTendencyReason": "雨天キャンセル傾向",
"reservations": ["R002"]
},
{
"customerId": "C003",
"name": "鈴木 一郎",
"email": "ichiro.suzuki@example.com",
"cancelTendency": "high",
"cancelTendencyReason": "雨天キャンセル傾向",
"reservations": ["R004"]
},
{
"customerId": "C004",
"name": "佐藤 美咲",
"email": "misaki.sato@example.com",
"cancelTendency": "high",
"cancelTendencyReason": "雨天キャンセル傾向",
"reservations": ["R005"]
},
{
"customerId": "C005",
"name": "伊藤 健",
"email": "ken.ito@example.com",
"cancelTendency": "high",
"cancelTendencyReason": "雨天キャンセル傾向",
"reservations": ["R006"]
}
]

View File

@@ -0,0 +1,37 @@
{
"items": [
{
"itemId": "DESSERT_CHOCO",
"name": "チョコレートケーキ",
"category": "dessert",
"stock": 25,
"unit": "個",
"costPerUnit": 350
},
{
"itemId": "DESSERT_PUDDING",
"name": "プリン",
"category": "dessert",
"stock": 40,
"unit": "個",
"costPerUnit": 200
},
{
"itemId": "DESSERT_TIRAMISU",
"name": "ティラミス",
"category": "dessert",
"stock": 18,
"unit": "個",
"costPerUnit": 420
},
{
"itemId": "DRINK_WINE",
"name": "赤ワイン",
"category": "drink",
"stock": 12,
"unit": "本",
"costPerUnit": 1500
}
],
"updatedAt": "2026-03-27T06:00:00Z"
}

View File

@@ -0,0 +1,62 @@
[
{
"reservationId": "R001",
"customerId": "C001",
"customerName": "田中 花子",
"date": "2026-03-28",
"time": "18:00",
"partySize": 2,
"status": "confirmed",
"notes": ""
},
{
"reservationId": "R002",
"customerId": "C002",
"customerName": "山田 太郎",
"date": "2026-03-28",
"time": "19:00",
"partySize": 4,
"status": "confirmed",
"notes": ""
},
{
"reservationId": "R003",
"customerId": "C001",
"customerName": "田中 花子",
"date": "2026-03-28",
"time": "19:30",
"partySize": 2,
"status": "confirmed",
"notes": "アレルギー: ナッツ"
},
{
"reservationId": "R004",
"customerId": "C003",
"customerName": "鈴木 一郎",
"date": "2026-03-28",
"time": "20:00",
"partySize": 3,
"status": "confirmed",
"notes": ""
},
{
"reservationId": "R005",
"customerId": "C004",
"customerName": "佐藤 美咲",
"date": "2026-03-28",
"time": "18:30",
"partySize": 2,
"status": "confirmed",
"notes": ""
},
{
"reservationId": "R006",
"customerId": "C005",
"customerName": "伊藤 健",
"date": "2026-03-28",
"time": "21:00",
"partySize": 1,
"status": "confirmed",
"notes": ""
}
]

View File

@@ -0,0 +1,16 @@
{
"location": "Tokyo",
"forecasts": [
{
"date": "2026-03-28",
"condition": "rainy",
"conditionJa": "雨",
"tempHigh": 14,
"tempLow": 9,
"precipitationMm": 12,
"precipitationProbability": 90,
"summary": "明日は一日を通して雨が降る見込みです。最高気温14度、傘の持参をお勧めします。"
}
],
"updatedAt": "2026-03-27T06:00:00Z"
}