All checks were successful
Backend CI / Run Maven Tests (pull_request) Successful in 28s
33 lines
633 B
Markdown
33 lines
633 B
Markdown
# Vibing application
|
|
|
|
## Data model
|
|
|
|
```mermaid
|
|
classDiagram
|
|
class Activity {
|
|
+Long id
|
|
+String name
|
|
+Location location
|
|
+Integer priceRange
|
|
+List~String~ tags
|
|
+String description
|
|
+LocalDateTime createdAt
|
|
+LocalDateTime updatedAt
|
|
}
|
|
|
|
class Location {
|
|
+Long id
|
|
+String name
|
|
+String address
|
|
+String city
|
|
+String country
|
|
+String postalCode
|
|
+Double latitude
|
|
+Double longitude
|
|
+LocalDateTime createdAt
|
|
+LocalDateTime updatedAt
|
|
}
|
|
|
|
Activity <-- Location : belongs to
|
|
```
|