28 lines
1.9 KiB
Go
28 lines
1.9 KiB
Go
// =================================================================================
|
||
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
||
// =================================================================================
|
||
|
||
package entity
|
||
|
||
import (
|
||
"github.com/gogf/gf/v2/os/gtime"
|
||
)
|
||
|
||
// SystemDictData is the golang structure for table system_dict_data.
|
||
type SystemDictData struct {
|
||
Id int64 `json:"id" orm:"id" description:"字典编码"` // 字典编码
|
||
Sort int `json:"sort" orm:"sort" description:"字典排序"` // 字典排序
|
||
Label string `json:"label" orm:"label" description:"字典标签"` // 字典标签
|
||
Value string `json:"value" orm:"value" description:"字典键值"` // 字典键值
|
||
DictType string `json:"dictType" orm:"dict_type" description:"字典类型"` // 字典类型
|
||
Status int `json:"status" orm:"status" description:"状态(0正常 1停用)"` // 状态(0正常 1停用)
|
||
ColorType string `json:"colorType" orm:"color_type" description:"颜色类型"` // 颜色类型
|
||
CssClass string `json:"cssClass" orm:"css_class" description:"css 样式"` // css 样式
|
||
Remark string `json:"remark" orm:"remark" description:"备注"` // 备注
|
||
Creator string `json:"creator" orm:"creator" description:"创建者"` // 创建者
|
||
CreateTime *gtime.Time `json:"createTime" orm:"create_time" description:"创建时间"` // 创建时间
|
||
Updater string `json:"updater" orm:"updater" description:"更新者"` // 更新者
|
||
UpdateTime *gtime.Time `json:"updateTime" orm:"update_time" description:"更新时间"` // 更新时间
|
||
Deleted bool `json:"deleted" orm:"deleted" description:"是否删除"` // 是否删除
|
||
}
|