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.
|
- package model
-
- type Gateway struct {
- ID string `json:"id" gorm:"primaryKey"`
- Name string `json:"name"`
- MAC string `json:"mac" gorm:"index"`
- Status string `json:"status"`
- Model string `json:"model"`
- IP string `json:"ip"`
- Position string `json:"position"`
- X float32 `json:"x"`
- Y float32 `json:"y"`
- Notes string `json:"notes"`
- Floor string `json:"floor"`
- Building string `json:"building"`
- }
|