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