package model type EventAttribute struct { ID int `gorm:"primarykey" readonly:"true"` AppId int EventName string EventAttr string } func (m *EventAttribute) TableName() string { return "meta_attr_relation" }