25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- 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"`
- }
|