2022-11-24 23:37:34 +08:00
|
|
|
|
// =================================================================================
|
|
|
|
|
// Code generated by GoFrame CLI tool. DO NOT EDIT.
|
|
|
|
|
// =================================================================================
|
|
|
|
|
|
|
|
|
|
package entity
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"github.com/gogf/gf/v2/os/gtime"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
// SysDictData is the golang structure for table sys_dict_data.
|
|
|
|
|
type SysDictData struct {
|
2023-01-18 16:23:39 +08:00
|
|
|
|
Id int64 `json:"id" description:"字典数据ID"`
|
2022-11-24 23:37:34 +08:00
|
|
|
|
Label string `json:"label" description:"字典标签"`
|
|
|
|
|
Value string `json:"value" description:"字典键值"`
|
2023-01-18 16:23:39 +08:00
|
|
|
|
ValueType string `json:"valueType" description:"键值数据类型:string,int,uint,bool,datetime,date"`
|
2022-11-24 23:37:34 +08:00
|
|
|
|
Type string `json:"type" description:"字典类型"`
|
|
|
|
|
ListClass string `json:"listClass" description:"表格回显样式"`
|
2023-01-18 16:23:39 +08:00
|
|
|
|
IsDefault int `json:"isDefault" description:"是否为系统默认"`
|
2022-11-24 23:37:34 +08:00
|
|
|
|
Sort int `json:"sort" description:"字典排序"`
|
|
|
|
|
Remark string `json:"remark" description:"备注"`
|
|
|
|
|
Status int `json:"status" description:"状态"`
|
|
|
|
|
CreatedAt *gtime.Time `json:"createdAt" description:"创建时间"`
|
|
|
|
|
UpdatedAt *gtime.Time `json:"updatedAt" description:"更新时间"`
|
|
|
|
|
}
|