| 12345678910111213141516171819202122232425262728293031 |
- // ==========================================================================
- // This is auto-generated by gf cli tool. DO NOT EDIT THIS FILE MANUALLY.
- // ==========================================================================
- package internal
- import (
- "github.com/gogf/gf/os/gtime"
- )
- // SysDictData is the golang structure for table sys_dict_data.
- type SysDictData struct {
- DictCode int `orm:"dict_code,primary" json:"dictCode"` // 字典编码
- DictSort int `orm:"dict_sort" json:"dictSort"` // 字典排序
- DictLabel string `orm:"dict_label" json:"dictLabel"` // 字典标签
- DictValue string `orm:"dict_value" json:"dictValue"` // 字典键值
- DictType string `orm:"dict_type" json:"dictType"` // 字典类型
- CssClass string `orm:"css_class" json:"cssClass"` // 样式属性(其他样式扩展)
- ListClass string `orm:"list_class" json:"listClass"` // 表格回显样式
- IsDefault string `orm:"is_default" json:"isDefault"` // 是否默认(10是20否)
- Status string `orm:"status" json:"status"` // 状态(10正常20停用)
- Sort int `orm:"sort" json:"sort"` // 显示顺序
- Remark string `orm:"remark" json:"remark"` // 备注
- CreatedBy int `orm:"created_by" json:"createdBy"` // 创建者
- CreatedName string `orm:"created_name" json:"createdName"` // 创建人
- CreatedTime *gtime.Time `orm:"created_time" json:"createdTime"` // 创建时间
- UpdatedBy int `orm:"updated_by" json:"updatedBy"` // 更新者
- UpdatedName string `orm:"updated_name" json:"updatedName"` // 更新人
- UpdatedTime *gtime.Time `orm:"updated_time" json:"updatedTime"` // 更新时间
- DeletedTime *gtime.Time `orm:"deleted_time" json:"deletedTime"` // 删除时间
- }
|