yuleduiPay/service/po/dict.go

24 lines
1.1 KiB
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// =================================================================================
// 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" ` // 最后更新时间
}