package model
import "time"
type Label struct {
ID uint `json:"id" gorm:"primaryKey"`
Type int `json:"type"`
Name string `json:"name"`
Description string `json:"description"`
BgColor string `json:"bg_color"`
CreateTime time.Time `json:"create_time"`
}