57 lines
909 B
Markdown
57 lines
909 B
Markdown
---
|
|
tags: event
|
|
---
|
|
|
|
# REQ0042/event-detail
|
|
|
|
## description
|
|
|
|
path: `/event_detail/{event_id}`
|
|
should be without bottom bar
|
|
|
|
| chi | eng |
|
|
| --------------------------- | --------------------------- |
|
|
|  |  |
|
|
|
|
## schema
|
|
|
|
```prisma
|
|
model Event {
|
|
id String @id @default(cuid())
|
|
eventDate DateTime
|
|
title String
|
|
joinMembers Member[] // Assuming Member model exists
|
|
price Float
|
|
currency String
|
|
duration_m Int
|
|
ageBottom Int
|
|
ageTop Int
|
|
location String
|
|
avatar String // Assuming avatar is stored as a file path or URL
|
|
}
|
|
```
|
|
|
|
## Spent
|
|
|
|
126
|
|
|
|
## relation
|
|
|
|
[[REQ0016/index]]
|
|
|
|
[[REQ0012/index]]
|
|
|
|
[[REQ0019/index]]
|
|
|
|
[[REQ0017/index]]
|
|
|
|
[[REQ0010/index]]
|
|
|
|
[[REQ0009/index]]
|
|
|
|
[[REQ0014/index]]
|
|
|
|
[[REQ0003/index]]
|
|
|
|
[[REQ0013/index]]
|