13 lines
205 B
Go
13 lines
205 B
Go
package system
|
|
|
|
import "git.echol.cn/loser/lckt/global"
|
|
|
|
type Class struct {
|
|
global.GVA_MODEL
|
|
Name string `json:"name" gorm:"comment:分类名"`
|
|
}
|
|
|
|
func (c *Class) TableName() string {
|
|
return "class"
|
|
}
|