mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-03-14 05:46:26 -05:00
15 lines
307 B
Go
15 lines
307 B
Go
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"
|
|
}
|