13 lines
226 B
Go
13 lines
226 B
Go
|
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"
|
||
|
}
|