fin-check-api/db/type.go

11 lines
116 B
Go

package db
import "gorm.io/gorm"
type Type struct {
gorm.Model
Name string
Comment string
Color string
}