IDs: string -> int

This commit is contained in:
Simon Martens
2025-02-19 22:03:40 +01:00
parent aa7c5f4d6c
commit 107a9d9f70
21 changed files with 94 additions and 63 deletions

View File

@@ -8,7 +8,7 @@ type Bände struct {
}
type Band struct {
ID string `xml:"ID"`
ID int `xml:"ID"`
BiblioID int `xml:"BIBLIO-ID"`
Titelangabe string `xml:"TITEL"`
Ortsangabe string `xml:"ORT-ALT"`
@@ -26,7 +26,7 @@ type Band struct {
}
type Ortverweis struct {
Value string `xml:"Value"`
Value int `xml:"Value"`
}
type Status struct {