mirror of
https://github.com/go-admin-team/go-admin.git
synced 2026-09-22 18:37:43 +00:00
12 lines
198 B
Go
12 lines
198 B
Go
package model
|
|
|
|
import "gorm.io/gorm/schema"
|
|
|
|
type ActiveRecord interface {
|
|
schema.Tabler
|
|
SetCreateBy(createBy string)
|
|
SetUpdateBy(updateBy string)
|
|
Generate() ActiveRecord
|
|
GetId() interface{}
|
|
}
|