package model import "gorm.io/gorm" type Elevator struct { gorm.Model } func (m *Elevator) TableName() string { return "elevator" }