mirror of
https://github.com/andatoshiki/shikigrid.git
synced 2026-06-06 04:04:15 +00:00
12 lines
223 B
Go
12 lines
223 B
Go
package models
|
|
|
|
import "github.com/jinzhu/gorm"
|
|
|
|
type AccessPoint struct {
|
|
gorm.Model
|
|
|
|
UnitID uint `json:"-"`
|
|
Name string `gorm:"size:255;not null" json:"name"`
|
|
Mac string `gorm:"size:255;not null" json:"mac"`
|
|
}
|