Source File
interfaces.go
Belonging Package
gorm.io/gorm/callbacks
package callbacksimporttype BeforeCreateInterface interface {BeforeCreate(*gorm.DB) error}type AfterCreateInterface interface {AfterCreate(*gorm.DB) error}type BeforeUpdateInterface interface {BeforeUpdate(*gorm.DB) error}type AfterUpdateInterface interface {AfterUpdate(*gorm.DB) error}type BeforeSaveInterface interface {BeforeSave(*gorm.DB) error}type AfterSaveInterface interface {AfterSave(*gorm.DB) error}type BeforeDeleteInterface interface {BeforeDelete(*gorm.DB) error}type AfterDeleteInterface interface {AfterDelete(*gorm.DB) error}type AfterFindInterface interface {AfterFind(*gorm.DB) error}
![]() |
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |