2021-09-26 02:35:02 +00:00
|
|
|
package model
|
|
|
|
|
|
|
|
type ServerCategoryList struct {
|
|
|
|
Id uint `gorm:"column:id;primary_key" json:"id"`
|
|
|
|
//CreatedAt time.Time `json:"created_at"`
|
|
|
|
//
|
|
|
|
//UpdatedAt time.Time `json:"updated_at"`
|
2021-12-29 08:42:20 +00:00
|
|
|
Font string `json:"font"`
|
2021-09-26 02:35:02 +00:00
|
|
|
Name string `json:"name"`
|
|
|
|
Count uint `json:"count"`
|
|
|
|
}
|