// ================================================================================= // Code generated and maintained by GoFrame CLI tool. DO NOT EDIT. // ================================================================================= package po import ( "github.com/gogf/gf/v2/os/gtime" ) // Config is the golang structure for table config. type Config struct { Id int `json:"id" orm:"id" ` // Project int `json:"project" orm:"project" ` // Type int `json:"type" orm:"type" ` // Info string `json:"info" orm:"info" ` // Desc string `json:"desc" orm:"desc" ` // DeleteFlag string `json:"deleteFlag" orm:"delete_flag" ` // CreateTime *gtime.Time `json:"createTime" orm:"create_time" ` // UpdateTime *gtime.Time `json:"updateTime" orm:"update_time" ` // }