You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
// 自动生成模板SysDictionaryDetail
package model
import ( "gorm.io/gorm" )
// 如果含有time.Time 请自行import time包
type SysDictionaryDetail struct { gorm.Model Label string `json:"label" form:"label" gorm:"column:label;comment:'展示值'"` Value int `json:"value" form:"value" gorm:"column:value;comment:'字典值'"` Status *bool `json:"status" form:"status" gorm:"column:status;comment:'启用状态'"` Sort int `json:"sort" form:"sort" gorm:"column:sort;comment:'排序标记'"` SysDictionaryID int `json:"sysDictionaryID" form:"sysDictionaryID" gorm:"column:sys_dictionary_id;comment:'关联标记'"` }
|