mirror of
https://github.com/go-admin-team/go-admin.git
synced 2026-09-21 02:04:09 +00:00
12 lines
195 B
Go
12 lines
195 B
Go
package models
|
|
|
|
import "gorm.io/gorm/schema"
|
|
|
|
type ActiveRecord interface {
|
|
schema.Tabler
|
|
SetCreateBy(createBy uint)
|
|
SetUpdateBy(updateBy uint)
|
|
Generate() ActiveRecord
|
|
GetId() interface{}
|
|
}
|