add spaces

This commit is contained in:
xds
2025-02-17 17:58:07 +03:00
parent a5b334f6c2
commit d680345a9f
23 changed files with 1097 additions and 285 deletions

View File

@@ -10,6 +10,7 @@ import kotlin.collections.mutableListOf
data class BudgetDTO(
var id: String? = null,
var space: Space? = null,
var name: String,
var dateFrom: LocalDate,
var dateTo: LocalDate,
@@ -26,6 +27,7 @@ data class BudgetDTO(
@Document("budgets")
data class Budget(
@Id var id: String? = null,
@DBRef var space: Space? = null,
var name: String,
var dateFrom: LocalDate,
var dateTo: LocalDate,