You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
749 B

package domain
type Artikel struct {
Id uint64 `json:"id"`
Bezeichnung string `json:"bezeichnung"`
ArtNrExt string `json:"artNrExt"`
}
type Kunde struct {
Id uint `json:"id"`
Name string `json:"name"`
KdNrExt int `json:"kdNrExt"`
}
type Lieferant struct {
Id uint `json:"id"`
Name string `json:"name"`
LiefNr_ext uint `json:"liefNrExt"`
}
type Seriennummer struct {
Id uint64 `json:"id"`
ArtId uint64 `json:"artId"`
KdId uint `json:"port"`
LiefId uint `json:"liefId"`
SerienNr string `json:"serienNr"`
EkDat string `json:"ekDat"`
VkDat string `json:"vkDat"`
GarantieBis string `json:"garantieBis"`
Bemerkung string `json:"bemerkung"`
}