17 lines
346 B
Go
17 lines
346 B
Go
|
// Package model -----------------------------
|
||
|
// @file : tag.go
|
||
|
// @author : JJXu
|
||
|
// @contact : wavingbear@163.com
|
||
|
// @time : 2024/7/1 下午4:03
|
||
|
// -------------------------------------------
|
||
|
package model
|
||
|
|
||
|
type Tag struct {
|
||
|
Model
|
||
|
Name string `gorm:"column:name;comment:"`
|
||
|
}
|
||
|
|
||
|
func (t *Tag) TableName() string {
|
||
|
return "tag"
|
||
|
}
|