mirror of
https://github.com/snowykami/neo-blog.git
synced 2025-09-03 15:56:22 +00:00
11 lines
270 B
Go
11 lines
270 B
Go
package model
|
|
|
|
import "gorm.io/gorm"
|
|
|
|
type Label struct {
|
|
gorm.Model
|
|
Key string `gorm:"uniqueIndex"` // 标签键,唯一标识
|
|
Value string `gorm:"type:text"` // 标签值,描述标签的内容
|
|
Color string `gorm:"type:text"` // 前端可用颜色代码
|
|
}
|