Files
go-admin/app/admin/models/student.go
T
2020-09-29 08:41:20 +08:00

27 lines
402 B
Go

package models
import (
"gorm.io/gorm"
"go-admin/common/models"
)
type Student struct {
gorm.Model
models.ControlBy
Name string `json:"name" gorm:"type:varchar(255);comment:姓名"` //
}
func (Student) TableName() string {
return "student"
}
func (e *Student) Generate() models.ActiveRecord {
o := *e
return &o
}
func (e *Student) GetId() interface{} {
return e.ID
}