Documentation
¶
Index ¶
Constants ¶
View Source
const ( EventTypeList = "EventTypeList" ActionTypeList = "ActionTypeList" PropertyTypeList = "PropertyTypeList" )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ActionType ¶
type ActionType struct {
SourceID string `gorm:"primaryKey"`
Name string `gorm:"primaryKey"`
PropertyTypeList []PropertyType `gorm:"many2many:action_type_property_type;"`
}
type CommonModel ¶
type CommonModel struct {
RuntimePath string
}
type EventType ¶
type EventType struct {
SourceID string `gorm:"primaryKey"`
Name string `gorm:"primaryKey"`
PropertyTypeList []PropertyType `gorm:"many2many:event_type_property_type;"`
}
type GenericType ¶
type PropertyType ¶
type PropertyType struct {
Name string `gorm:"primaryKey"`
}
Click to show internal directories.
Click to hide internal directories.