Documentation ¶
Index ¶
Constants ¶
View Source
const TableNameDictInfo = "dict_info"
View Source
const TableNameDictType = "dict_type"
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type DictInfo ¶
type DictInfo struct { *v.Model TypeID int32 `gorm:"column:typeId;type:int;not null" json:"typeId"` // 类型ID Name string `gorm:"column:name;type:varchar(255);not null" json:"name"` // 名称 OrderNum int32 `gorm:"column:orderNum;type:int;not null" json:"orderNum"` // 排序 Remark *string `gorm:"column:remark;type:varchar(255)" json:"remark"` // 备注 ParentID *int32 `gorm:"column:parentId;type:int" json:"parentId"` // 父ID }
DictInfo mapped from table <dict_info>
Click to show internal directories.
Click to hide internal directories.