You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

14 lines
307 B

package model
// Callback struct
type Callback struct {
ID int32 `gorm:"column:id"`
URL string `gorm:"column:url"`
Business int8 `gorm:"column:business"`
State int8 `gorm:"column:state"`
}
// TableName by Callback
func (*Callback) TableName() string {
return "workflow_callback"
}