Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- package model
-
- type Tracker struct {
- ID string `json:"id" gorm:"primaryKey`
- Name string `json:"name"`
- MAC string `json:"mac"`
- Status string `json:"status"`
- Model string `json:"model"`
- Position string `json:"position"`
- Notes string `json:"notes"`
- X int `json:"x"`
- Y int `json:"y"`
- Floor string `json:"floor" gorm:"type:uuid"`
- Building string `json:"building" gorm:"type:uuid"`
- }
|