24 lines
1.1 KiB
Go
24 lines
1.1 KiB
Go
// =================================================================================
|
||
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
||
// =================================================================================
|
||
|
||
package po
|
||
|
||
import (
|
||
"github.com/gogf/gf/v2/os/gtime"
|
||
)
|
||
|
||
// Dict is the golang structure for table dict.
|
||
type Dict struct {
|
||
Id int `json:"id" orm:"id" ` // id
|
||
Pid int `json:"pid" orm:"pid" ` // 父级id
|
||
Title string `json:"title" orm:"title" ` // 名称
|
||
Value int `json:"value" orm:"value" ` // 值
|
||
Desc string `json:"desc" orm:"desc" ` // 描述
|
||
Type int `json:"type" orm:"type" ` // 分类
|
||
Sort int `json:"sort" orm:"sort" ` // 排序
|
||
DeleteFlag int `json:"deleteFlag" orm:"delete_flag" ` // 0:未删除 1:已删除 0
|
||
CreateTime *gtime.Time `json:"createTime" orm:"create_time" ` // 创建时间
|
||
UpdateTime *gtime.Time `json:"updateTime" orm:"update_time" ` // 最后更新时间
|
||
}
|